Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 1 | --- |
| 2 | # roles/juju-setup/main/tasks.yml |
| 3 | |
Zack Williams | c59b6b2 | 2016-04-11 12:49:10 -0700 | [diff] [blame] | 4 | - 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 Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 9 | - name: create Virtual Machines with uvt-kvm |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 10 | shell: uvt-kvm create {{ item.name }} --cpu={{ item.cpu }} --memory={{ item.memMB }} --disk={{ item.diskGB }} ; \ |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 11 | uvt-kvm wait --insecure {{ item.name }} |
| 12 | creates=/var/lib/uvtool/libvirt/images/{{ item.name }}.qcow |
Zack Williams | 4bbfe1d | 2016-02-29 16:16:29 -0700 | [diff] [blame] | 13 | with_items: "{{ head_vm_list }}" |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 14 | |
Zack Williams | 3db3b96 | 2016-03-01 21:59:25 -0700 | [diff] [blame] | 15 | - name: Have VMs autostart on reboot |
| 16 | command: virsh autostart {{ item.name }} |
| 17 | with_items: "{{ head_vm_list }}" |
| 18 | |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 19 | - name: Create /etc/ansible/hosts file |
| 20 | become: yes |
| 21 | template: |
| 22 | src=ansible_hosts.j2 |
| 23 | dest=/etc/ansible/hosts |
| 24 | |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 25 | - name: Verify that we can log into every VM |
| 26 | command: ansible services -m ping -u ubuntu |
| 27 | |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 28 | - name: Update software in all the VMs |
| 29 | command: ansible services -m apt -b -u ubuntu -a "upgrade=dist update_cache=yes cache_valid_time=3600" |
| 30 | |
| 31 | - name: Create VM's eth0 interface config file for DNS config via resolvconf program |
Zack Williams | 4bd2dbc | 2016-03-10 12:50:02 -0700 | [diff] [blame] | 32 | template: |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 33 | src=eth0.cfg.j2 |
| 34 | dest={{ ansible_user_dir }}/eth0.cfg |
| 35 | |
| 36 | - name: Copy eth0 interface config file to all VMs |
| 37 | 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" |
| 38 | |
| 39 | - name: Restart eth0 interface on all VMs |
| 40 | command: ansible services -b -u ubuntu -m shell -a "ifdown eth0 ; ifup eth0" |
Zack Williams | 4bd2dbc | 2016-03-10 12:50:02 -0700 | [diff] [blame] | 41 | |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 42 | - name: Initialize Juju |
| 43 | command: juju generate-config |
Zack Williams | 823d529 | 2016-02-29 10:31:17 -0700 | [diff] [blame] | 44 | creates={{ ansible_user_dir }}/.juju/environments.yaml |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 45 | |
Zack Williams | 823d529 | 2016-02-29 10:31:17 -0700 | [diff] [blame] | 46 | - name: Create Juju config file from template |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 47 | template: |
Zack Williams | 823d529 | 2016-02-29 10:31:17 -0700 | [diff] [blame] | 48 | src=environments.yaml.j2 |
| 49 | dest={{ ansible_user_dir }}/.juju/environments.yaml |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 50 | |
| 51 | - name: Bootstrap Juju |
| 52 | command: juju bootstrap |
Zack Williams | 823d529 | 2016-02-29 10:31:17 -0700 | [diff] [blame] | 53 | creates={{ ansible_user_dir }}/.juju/environments/manual.jenv |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 54 | |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 55 | - name: Create openstack.cfg for Juju from template |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 56 | become: yes |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 57 | template: |
| 58 | src=openstack.cfg.j2 |
| 59 | dest={{ openstack_cfg_path }} |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 60 | |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 61 | # Code for this is in library/juju_facts.py |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 62 | - name: Obtain Juju Facts for creating machines |
Zack Williams | 32e12fb | 2016-02-29 10:25:59 -0700 | [diff] [blame] | 63 | juju_facts: |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 64 | |
Zack Williams | 823d529 | 2016-02-29 10:31:17 -0700 | [diff] [blame] | 65 | # For setwise operations on desired vs Juju state: |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 66 | # list of VM names in head_vm_list dict: head_vm_list | map(attribute='name') | list |
Zack Williams | 32e12fb | 2016-02-29 10:25:59 -0700 | [diff] [blame] | 67 | # list of active juju_machines names: juju_machines.keys() |
Zack Williams | 823d529 | 2016-02-29 10:31:17 -0700 | [diff] [blame] | 68 | # list of active juju_services names: juju_services.keys() |
Zack Williams | 573bafc | 2016-02-26 16:35:42 -0700 | [diff] [blame] | 69 | |
Zack Williams | 9cdf862 | 2016-02-26 22:42:50 -0700 | [diff] [blame] | 70 | - name: Add machines to Juju |
Zack Williams | 32e12fb | 2016-02-29 10:25:59 -0700 | [diff] [blame] | 71 | command: "juju add-machine ssh:{{ item }}" |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 72 | with_items: "{{ head_vm_list | map(attribute='service') | list | difference( juju_machines.keys() ) }}" |
| 73 | |
| 74 | # run this again, so machines will be in the juju_machines list |
| 75 | - name: Obtain Juju Facts after machine creation |
| 76 | juju_facts: |
Zack Williams | 0df6f2c | 2016-02-29 14:48:52 -0700 | [diff] [blame] | 77 | |
| 78 | - name: Deploy services that are hosted in their own VM |
| 79 | command: "juju deploy {{ item }} --to {{ juju_machines[item]['machine_id'] }} --config={{ openstack_cfg_path }}" |
| 80 | with_items: "{{ vm_service_list | difference( juju_services.keys() ) }}" |
| 81 | |
| 82 | - name: Deploy mongodb to ceilometer VM |
| 83 | command: "juju deploy mongodb --to {{ juju_machines['ceilometer']['machine_id'] }} --config={{ openstack_cfg_path }}" |
| 84 | when: juju_services['mongodb'] is undefined |
| 85 | |
| 86 | - name: Deploy services that don't have their own VM |
| 87 | command: "juju deploy {{ item }} --config={{ openstack_cfg_path }}" |
| 88 | with_items: "{{ standalone_service_list | difference( juju_services.keys() ) }}" |
Zack Williams | 32e12fb | 2016-02-29 10:25:59 -0700 | [diff] [blame] | 89 | |
Zack Williams | 4bbfe1d | 2016-02-29 16:16:29 -0700 | [diff] [blame] | 90 | # FIXME: ignoring errors when creating relationships. |
| 91 | # Previous method wasn't idempotent either |
Zack Williams | 4bbfe1d | 2016-02-29 16:16:29 -0700 | [diff] [blame] | 92 | - name: Create relations between services |
| 93 | command: "juju add-relation '{{ item.0.name }}' '{{ item.1 }}'" |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 94 | register: juju_relation |
| 95 | failed_when: "juju_relation|failed and 'relation already exists' not in juju_relation.stderr" |
Zack Williams | 4bbfe1d | 2016-02-29 16:16:29 -0700 | [diff] [blame] | 96 | with_subelements: |
| 97 | - "{{ service_relations }}" |
| 98 | - relations |
| 99 | |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 100 | # run another time, so services will be in juju_services list |
| 101 | - name: Obtain Juju Facts after service creation |
| 102 | juju_facts: |
| 103 | |
Zack Williams | 4bd2dbc | 2016-03-10 12:50:02 -0700 | [diff] [blame] | 104 | # This should be able to test for the VM's coming up, but not working right now |
| 105 | #- name: Wait for juju services on VM's to come up |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 106 | # wait_for: |
Zack Williams | 4bd2dbc | 2016-03-10 12:50:02 -0700 | [diff] [blame] | 107 | # port={{ item.ext }} |
| 108 | # timeout=10 |
| 109 | # with_items: "{{ head_vm_list | map(attribute='forwarded_ports') | reject('undefined') | list }}" |
Zack Williams | 3db3b96 | 2016-03-01 21:59:25 -0700 | [diff] [blame] | 110 | |
Zack Williams | 709f11b | 2016-03-17 14:29:51 -0700 | [diff] [blame] | 111 | # - name: Obtain keystone admin password |
| 112 | # command: "juju run --unit={{ juju_services['keystone']['units'].keys()[0] }} 'sudo cat /var/lib/keystone/keystone.passwd'" |
| 113 | # register: keystone_password |
| 114 | |
| 115 | - name: Create admin-openrc.sh credentials file |
| 116 | template: |
| 117 | src=admin-openrc.sh.j2 |
| 118 | dest={{ ansible_user_dir }}/admin-openrc.sh |
| 119 | |
| 120 | - name: Copy nova-cloud-controller CA certificate to head |
| 121 | command: juju scp {{ juju_services['nova-cloud-controller']['units'].keys()[0] }}:/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt {{ ansible_user_dir }} |
| 122 | creates={{ ansible_user_dir }}/keystone_juju_ca_cert.crt |
| 123 | |
| 124 | - name: Move cert to system location |
| 125 | become: yes |
| 126 | command: mv {{ ansible_user_dir }}/keystone_juju_ca_cert.crt /usr/local/share/ca-certificates |
| 127 | creates=/usr/local/share/ca-certificates/keystone_juju_ca_cert.crt |
| 128 | notify: update-ca-certificates |
| 129 | |