blob: 58c553d82e522e0344c18a957c374014ac082e31 [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 Williams0df6f2c2016-02-29 14:48:52 -070062- name: Create openstack.cfg for Juju from template
Zack Williams573bafc2016-02-26 16:35:42 -070063 become: yes
Zack Williams0df6f2c2016-02-29 14:48:52 -070064 template:
65 src=openstack.cfg.j2
66 dest={{ openstack_cfg_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
85 command: "juju deploy {{ item }} --to {{ juju_machines[item]['machine_id'] }} --config={{ openstack_cfg_path }}"
86 with_items: "{{ vm_service_list | difference( juju_services.keys() ) }}"
87
88- name: Deploy mongodb to ceilometer VM
89 command: "juju deploy mongodb --to {{ juju_machines['ceilometer']['machine_id'] }} --config={{ openstack_cfg_path }}"
90 when: juju_services['mongodb'] is undefined
91
92- name: Deploy services that don't have their own VM
93 command: "juju deploy {{ item }} --config={{ openstack_cfg_path }}"
94 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 Williams4bd2dbc2016-03-10 12:50:02 -0700110# This should be able to test for the VM's coming up, but not working right now
111#- name: Wait for juju services on VM's to come up
Zack Williams709f11b2016-03-17 14:29:51 -0700112# wait_for:
Zack Williams4bd2dbc2016-03-10 12:50:02 -0700113# port={{ item.ext }}
114# timeout=10
115# with_items: "{{ head_vm_list | map(attribute='forwarded_ports') | reject('undefined') | list }}"
Zack Williams3db3b962016-03-01 21:59:25 -0700116
Zack Williams709f11b2016-03-17 14:29:51 -0700117# - name: Obtain keystone admin password
118# command: "juju run --unit={{ juju_services['keystone']['units'].keys()[0] }} 'sudo cat /var/lib/keystone/keystone.passwd'"
119# register: keystone_password
120
121- name: Create admin-openrc.sh credentials file
122 template:
123 src=admin-openrc.sh.j2
124 dest={{ ansible_user_dir }}/admin-openrc.sh
125
126- name: Copy nova-cloud-controller CA certificate to head
127 command: juju scp {{ juju_services['nova-cloud-controller']['units'].keys()[0] }}:/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt {{ ansible_user_dir }}
128 creates={{ ansible_user_dir }}/keystone_juju_ca_cert.crt
129
130- name: Move cert to system location
131 become: yes
132 command: mv {{ ansible_user_dir }}/keystone_juju_ca_cert.crt /usr/local/share/ca-certificates
133 creates=/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt
134 notify: update-ca-certificates
135