blob: bc85ae2e627d7e6b3a172f0dc83f14d45f1bce57 [file] [log] [blame]
Zack Williams573bafc2016-02-26 16:35:42 -07001---
2# roles/juju-setup/main/tasks.yml
3
Zack Williamsc59b6b22016-04-11 12:49:10 -07004- name: Get ubuntu image for uvtool
5 become: yes
6 command: uvt-simplestreams-libvirt sync --source http://cloud-images.ubuntu.com/daily \
7 release={{ ansible_distribution_release }} arch=amd64
8
Zack Williams0df6f2c2016-02-29 14:48:52 -07009- name: create Virtual Machines with uvt-kvm
Andy Bavierd7710062016-04-25 15:01:30 -040010 shell: uvt-kvm create {{ item.name }} release={{ ansible_distribution_release }} \
11 --cpu={{ item.cpu }} --memory={{ item.memMB }} --disk={{ item.diskGB }} --bridge="mgmtbr"
Zack Williams0df6f2c2016-02-29 14:48:52 -070012 creates=/var/lib/uvtool/libvirt/images/{{ item.name }}.qcow
Zack Williams4bbfe1d2016-02-29 16:16:29 -070013 with_items: "{{ head_vm_list }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070014
Zack Williams3db3b962016-03-01 21:59:25 -070015- name: Have VMs autostart on reboot
Zack Williamsba883e32016-04-11 16:06:43 -070016 virt:
17 name={{ item.name }}
18 command=autostart
19 with_items: "{{ head_vm_list }}"
20
21- name: wait for VM's to come up
22 wait_for:
23 host={{ item.name }}
24 port=22
Zack Williams3db3b962016-03-01 21:59:25 -070025 with_items: "{{ head_vm_list }}"
26
Zack Williams0df6f2c2016-02-29 14:48:52 -070027- name: Create /etc/ansible/hosts file
28 become: yes
29 template:
30 src=ansible_hosts.j2
31 dest=/etc/ansible/hosts
32
Zack Williams573bafc2016-02-26 16:35:42 -070033- name: Verify that we can log into every VM
34 command: ansible services -m ping -u ubuntu
35
Zack Williams709f11b2016-03-17 14:29:51 -070036- name: Update software in all the VMs
37 command: ansible services -m apt -b -u ubuntu -a "upgrade=dist update_cache=yes cache_valid_time=3600"
38
39- name: Create VM's eth0 interface config file for DNS config via resolvconf program
Zack Williams4bd2dbc2016-03-10 12:50:02 -070040 template:
Zack Williams709f11b2016-03-17 14:29:51 -070041 src=eth0.cfg.j2
42 dest={{ ansible_user_dir }}/eth0.cfg
43
44- name: Copy eth0 interface config file to all VMs
45 command: ansible services -b -u ubuntu -m copy -a "src={{ ansible_user_dir }}/eth0.cfg dest=/etc/network/interfaces.d/eth0.cfg owner=root group=root mode=0644"
46
47- name: Restart eth0 interface on all VMs
48 command: ansible services -b -u ubuntu -m shell -a "ifdown eth0 ; ifup eth0"
Zack Williams4bd2dbc2016-03-10 12:50:02 -070049
Zack Williamsca83c552016-04-28 09:45:38 -070050- name: Verify that we can log into every VM after restarting network interfaces
51 command: ansible services -m ping -u ubuntu
52
Zack Williams573bafc2016-02-26 16:35:42 -070053- name: Initialize Juju
54 command: juju generate-config
Zack Williams823d5292016-02-29 10:31:17 -070055 creates={{ ansible_user_dir }}/.juju/environments.yaml
Zack Williams573bafc2016-02-26 16:35:42 -070056
Zack Williams823d5292016-02-29 10:31:17 -070057- name: Create Juju config file from template
Zack Williams573bafc2016-02-26 16:35:42 -070058 template:
Zack Williams823d5292016-02-29 10:31:17 -070059 src=environments.yaml.j2
60 dest={{ ansible_user_dir }}/.juju/environments.yaml
Zack Williams573bafc2016-02-26 16:35:42 -070061
62- name: Bootstrap Juju
63 command: juju bootstrap
Zack Williams823d5292016-02-29 10:31:17 -070064 creates={{ ansible_user_dir }}/.juju/environments/manual.jenv
Zack Williams573bafc2016-02-26 16:35:42 -070065
Zack Williamsa627ae82016-04-13 12:37:10 -070066- name: Copy over juju-config.yml for configuring Juju services
Zack Williams573bafc2016-02-26 16:35:42 -070067 become: yes
Zack Williams0df6f2c2016-02-29 14:48:52 -070068 template:
Zack Williams684aa4c2016-04-14 07:04:38 -070069 src={{ juju_config_name }}_juju_config.yml.j2
Zack Williamsa627ae82016-04-13 12:37:10 -070070 dest={{ juju_config_path }}
Zack Williams573bafc2016-02-26 16:35:42 -070071
Zack Williams0df6f2c2016-02-29 14:48:52 -070072# Code for this is in library/juju_facts.py
Zack Williams709f11b2016-03-17 14:29:51 -070073- name: Obtain Juju Facts for creating machines
Zack Williams32e12fb2016-02-29 10:25:59 -070074 juju_facts:
Zack Williams573bafc2016-02-26 16:35:42 -070075
Zack Williams3dfe6af2016-04-30 11:37:09 -070076- name: Pause to let Juju settle before adding machines
77 pause:
78 prompt="Waiting for Juju..."
79 seconds=20
80
Zack Williams823d5292016-02-29 10:31:17 -070081# For setwise operations on desired vs Juju state:
Zack Williams32e12fb2016-02-29 10:25:59 -070082# list of active juju_machines names: juju_machines.keys()
Zack Williams823d5292016-02-29 10:31:17 -070083# list of active juju_services names: juju_services.keys()
Zack Williams573bafc2016-02-26 16:35:42 -070084
Zack Williams9cdf8622016-02-26 22:42:50 -070085- name: Add machines to Juju
Zack Williams32e12fb2016-02-29 10:25:59 -070086 command: "juju add-machine ssh:{{ item }}"
Zack Williams3dfe6af2016-04-30 11:37:09 -070087 with_items: "{{ head_vm_list | map(attribute='service') | list | reject('undefined') | map('format_string', '%s.'~site_suffix ) | difference( juju_machines.keys() ) }}"
Zack Williams709f11b2016-03-17 14:29:51 -070088
89# run this again, so machines will be in the juju_machines list
90- name: Obtain Juju Facts after machine creation
91 juju_facts:
Zack Williams0df6f2c2016-02-29 14:48:52 -070092
93- name: Deploy services that are hosted in their own VM
Zack Williams9332a1c2016-04-13 15:14:47 -070094 command: "juju deploy {{ charm_versions[item] | default(item) }} --to {{ juju_machines[item]['machine_id'] }} --config={{ juju_config_path }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070095 with_items: "{{ vm_service_list | difference( juju_services.keys() ) }}"
96
97- name: Deploy mongodb to ceilometer VM
Zack Williams9332a1c2016-04-13 15:14:47 -070098 command: "juju deploy {{ charm_versions['mongodb'] | default('mongodb') }} --to {{ juju_machines['ceilometer']['machine_id'] }} --config={{ juju_config_path }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070099 when: juju_services['mongodb'] is undefined
100
101- name: Deploy services that don't have their own VM
Zack Williams9332a1c2016-04-13 15:14:47 -0700102 command: "juju deploy {{ charm_versions[item] | default(item) }} --config={{ juju_config_path }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -0700103 with_items: "{{ standalone_service_list | difference( juju_services.keys() ) }}"
Zack Williams32e12fb2016-02-29 10:25:59 -0700104
Zack Williams4bbfe1d2016-02-29 16:16:29 -0700105- name: Create relations between services
106 command: "juju add-relation '{{ item.0.name }}' '{{ item.1 }}'"
Zack Williams709f11b2016-03-17 14:29:51 -0700107 register: juju_relation
108 failed_when: "juju_relation|failed and 'relation already exists' not in juju_relation.stderr"
Zack Williams4bbfe1d2016-02-29 16:16:29 -0700109 with_subelements:
110 - "{{ service_relations }}"
111 - relations
112
Zack Williams709f11b2016-03-17 14:29:51 -0700113# run another time, so services will be in juju_services list
114- name: Obtain Juju Facts after service creation
115 juju_facts:
116
Zack Williams7c35fac2016-04-11 23:52:43 -0700117# 900s = 15m. Usually takes 10-12m on cloudlab for relations to come up
Zack Williams3dfe6af2016-04-30 11:37:09 -0700118# Only checks for first port in list
Zack Williamsabd5d862016-04-26 15:26:47 -0700119- name: Wait for juju services on VM's have open ports
Zack Williams7c35fac2016-04-11 23:52:43 -0700120 wait_for:
121 host={{ item.name }}
122 port={{ item.forwarded_ports[0].int }}
123 timeout=900
124 with_items: "{{ head_vm_list | selectattr('forwarded_ports', 'defined') | list }}"
Zack Williams709f11b2016-03-17 14:29:51 -0700125
Zack Williamsabd5d862016-04-26 15:26:47 -0700126# secondary wait, as waiting on ports isn't enough. Probably only need one of these...
Zack Williams3dfe6af2016-04-30 11:37:09 -0700127# 40*15s = 600s = 10m max wait
Zack Williamsabd5d862016-04-26 15:26:47 -0700128- name: Wait for juju services to start
129 action: command juju status --format=summary
130 register: juju_summary
131 until: juju_summary.stdout.find("pending:") == -1
132 retries: 40
133 delay: 15
134
Zack Williams709f11b2016-03-17 14:29:51 -0700135- name: Create admin-openrc.sh credentials file
136 template:
137 src=admin-openrc.sh.j2
138 dest={{ ansible_user_dir }}/admin-openrc.sh
139
140- name: Copy nova-cloud-controller CA certificate to head
141 command: juju scp {{ juju_services['nova-cloud-controller']['units'].keys()[0] }}:/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt {{ ansible_user_dir }}
142 creates={{ ansible_user_dir }}/keystone_juju_ca_cert.crt
143
144- name: Move cert to system location
145 become: yes
146 command: mv {{ ansible_user_dir }}/keystone_juju_ca_cert.crt /usr/local/share/ca-certificates
147 creates=/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt
148 notify: update-ca-certificates
149
Zack Williams5a2b62d2016-04-28 07:55:18 -0700150- name: Move cert to xos vm
151 command: ansible xos-1 -b -u ubuntu -m copy -a "src={{ ansible_user_dir }}/keystone_juju_ca_cert.crt dest=/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt owner=root group=root mode=0644"
152
153- name: update-ca-certificates on xos vm
154 command: ansible xos-1 -b -u ubuntu -m command -a "update-ca-certificates"
Zack Williams3dfe6af2016-04-30 11:37:09 -0700155