blob: 075467e8591f0b4cb66dc2bd1899245878199382 [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
Zack Williamsba883e32016-04-11 16:06:43 -070010 shell: uvt-kvm create {{ item.name }} --cpu={{ item.cpu }} --memory={{ item.memMB }} --disk={{ item.diskGB }} --bridge="mgmtbr"
Zack Williams0df6f2c2016-02-29 14:48:52 -070011 creates=/var/lib/uvtool/libvirt/images/{{ item.name }}.qcow
Zack Williams4bbfe1d2016-02-29 16:16:29 -070012 with_items: "{{ head_vm_list }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070013
Zack Williams3db3b962016-03-01 21:59:25 -070014- name: Have VMs autostart on reboot
Zack Williamsba883e32016-04-11 16:06:43 -070015 virt:
16 name={{ item.name }}
17 command=autostart
18 with_items: "{{ head_vm_list }}"
19
20- name: wait for VM's to come up
21 wait_for:
22 host={{ item.name }}
23 port=22
Zack Williams3db3b962016-03-01 21:59:25 -070024 with_items: "{{ head_vm_list }}"
25
Zack Williams0df6f2c2016-02-29 14:48:52 -070026- name: Create /etc/ansible/hosts file
27 become: yes
28 template:
29 src=ansible_hosts.j2
30 dest=/etc/ansible/hosts
31
Zack Williams573bafc2016-02-26 16:35:42 -070032- name: Verify that we can log into every VM
33 command: ansible services -m ping -u ubuntu
34
Zack Williams709f11b2016-03-17 14:29:51 -070035- name: Update software in all the VMs
36 command: ansible services -m apt -b -u ubuntu -a "upgrade=dist update_cache=yes cache_valid_time=3600"
37
38- name: Create VM's eth0 interface config file for DNS config via resolvconf program
Zack Williams4bd2dbc2016-03-10 12:50:02 -070039 template:
Zack Williams709f11b2016-03-17 14:29:51 -070040 src=eth0.cfg.j2
41 dest={{ ansible_user_dir }}/eth0.cfg
42
43- name: Copy eth0 interface config file to all VMs
44 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"
45
46- name: Restart eth0 interface on all VMs
47 command: ansible services -b -u ubuntu -m shell -a "ifdown eth0 ; ifup eth0"
Zack Williams4bd2dbc2016-03-10 12:50:02 -070048
Zack Williams573bafc2016-02-26 16:35:42 -070049- name: Initialize Juju
50 command: juju generate-config
Zack Williams823d5292016-02-29 10:31:17 -070051 creates={{ ansible_user_dir }}/.juju/environments.yaml
Zack Williams573bafc2016-02-26 16:35:42 -070052
Zack Williams823d5292016-02-29 10:31:17 -070053- name: Create Juju config file from template
Zack Williams573bafc2016-02-26 16:35:42 -070054 template:
Zack Williams823d5292016-02-29 10:31:17 -070055 src=environments.yaml.j2
56 dest={{ ansible_user_dir }}/.juju/environments.yaml
Zack Williams573bafc2016-02-26 16:35:42 -070057
58- name: Bootstrap Juju
59 command: juju bootstrap
Zack Williams823d5292016-02-29 10:31:17 -070060 creates={{ ansible_user_dir }}/.juju/environments/manual.jenv
Zack Williams573bafc2016-02-26 16:35:42 -070061
Zack Williamsa627ae82016-04-13 12:37:10 -070062- name: Copy over juju-config.yml for configuring Juju services
Zack Williams573bafc2016-02-26 16:35:42 -070063 become: yes
Zack Williams0df6f2c2016-02-29 14:48:52 -070064 template:
Zack Williamsa627ae82016-04-13 12:37:10 -070065 src={{ juju_config_file }}
66 dest={{ juju_config_path }}
Zack Williams573bafc2016-02-26 16:35:42 -070067
Zack Williams0df6f2c2016-02-29 14:48:52 -070068# Code for this is in library/juju_facts.py
Zack Williams709f11b2016-03-17 14:29:51 -070069- name: Obtain Juju Facts for creating machines
Zack Williams32e12fb2016-02-29 10:25:59 -070070 juju_facts:
Zack Williams573bafc2016-02-26 16:35:42 -070071
Zack Williams823d5292016-02-29 10:31:17 -070072# For setwise operations on desired vs Juju state:
Zack Williams32e12fb2016-02-29 10:25:59 -070073# list of active juju_machines names: juju_machines.keys()
Zack Williams823d5292016-02-29 10:31:17 -070074# list of active juju_services names: juju_services.keys()
Zack Williams573bafc2016-02-26 16:35:42 -070075
Zack Williams9cdf8622016-02-26 22:42:50 -070076- name: Add machines to Juju
Zack Williams32e12fb2016-02-29 10:25:59 -070077 command: "juju add-machine ssh:{{ item }}"
Zack Williamsba883e32016-04-11 16:06:43 -070078 with_items: "{{ head_vm_list | map(attribute='service') | list | reject('undefined') | difference( juju_machines.keys() ) }}"
Zack Williams709f11b2016-03-17 14:29:51 -070079
80# run this again, so machines will be in the juju_machines list
81- name: Obtain Juju Facts after machine creation
82 juju_facts:
Zack Williams0df6f2c2016-02-29 14:48:52 -070083
84- name: Deploy services that are hosted in their own VM
Zack Williamsa627ae82016-04-13 12:37:10 -070085 command: "juju deploy {{ charm_version[item] | default(item) }} --to {{ juju_machines[item]['machine_id'] }} --config={{ juju_config_path }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070086 with_items: "{{ vm_service_list | difference( juju_services.keys() ) }}"
87
88- name: Deploy mongodb to ceilometer VM
Zack Williamsa627ae82016-04-13 12:37:10 -070089 command: "juju deploy {{ charm_version['mongodb'] | default('mongodb') }} --to {{ juju_machines['ceilometer']['machine_id'] }} --config={{ juju_config_path }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070090 when: juju_services['mongodb'] is undefined
91
92- name: Deploy services that don't have their own VM
Zack Williamsa627ae82016-04-13 12:37:10 -070093 command: "juju deploy {{ charm_version[item] | default(item) }} --config={{ juju_config_path }}"
Zack Williams0df6f2c2016-02-29 14:48:52 -070094 with_items: "{{ standalone_service_list | difference( juju_services.keys() ) }}"
Zack Williams32e12fb2016-02-29 10:25:59 -070095
Zack Williams4bbfe1d2016-02-29 16:16:29 -070096# FIXME: ignoring errors when creating relationships.
97# Previous method wasn't idempotent either
Zack Williams4bbfe1d2016-02-29 16:16:29 -070098- name: Create relations between services
99 command: "juju add-relation '{{ item.0.name }}' '{{ item.1 }}'"
Zack Williams709f11b2016-03-17 14:29:51 -0700100 register: juju_relation
101 failed_when: "juju_relation|failed and 'relation already exists' not in juju_relation.stderr"
Zack Williams4bbfe1d2016-02-29 16:16:29 -0700102 with_subelements:
103 - "{{ service_relations }}"
104 - relations
105
Zack Williams709f11b2016-03-17 14:29:51 -0700106# run another time, so services will be in juju_services list
107- name: Obtain Juju Facts after service creation
108 juju_facts:
109
Zack Williams7c35fac2016-04-11 23:52:43 -0700110# 900s = 15m. Usually takes 10-12m on cloudlab for relations to come up
111# Only checks for first port in list.
112- name: Wait for juju services on VM's to come up
113 wait_for:
114 host={{ item.name }}
115 port={{ item.forwarded_ports[0].int }}
116 timeout=900
117 with_items: "{{ head_vm_list | selectattr('forwarded_ports', 'defined') | list }}"
Zack Williams709f11b2016-03-17 14:29:51 -0700118
119- name: Create admin-openrc.sh credentials file
120 template:
121 src=admin-openrc.sh.j2
122 dest={{ ansible_user_dir }}/admin-openrc.sh
123
124- name: Copy nova-cloud-controller CA certificate to head
125 command: juju scp {{ juju_services['nova-cloud-controller']['units'].keys()[0] }}:/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt {{ ansible_user_dir }}
126 creates={{ ansible_user_dir }}/keystone_juju_ca_cert.crt
127
128- name: Move cert to system location
129 become: yes
130 command: mv {{ ansible_user_dir }}/keystone_juju_ca_cert.crt /usr/local/share/ca-certificates
131 creates=/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt
132 notify: update-ca-certificates
133