blob: 266bad83d8b38b743118b77e7bb1d7c8170b4afe [file] [log] [blame]
Zack Williamsd31bbc92016-05-20 11:43:18 -07001---
2# file: create-vms/tasks/main.yml
3
Zack Williamsd31bbc92016-05-20 11:43:18 -07004- name: create Virtual Machines with uvt-kvm
5 shell: uvt-kvm create {{ item.name }} release={{ ansible_distribution_release }} \
6 --cpu={{ item.cpu }} --memory={{ item.memMB }} --disk={{ item.diskGB }} --bridge="mgmtbr"
7 creates=/var/lib/uvtool/libvirt/images/{{ item.name }}.qcow
8 with_items: "{{ head_vm_list }}"
9
10- name: Have VMs autostart on reboot
11 become: yes
12 virt:
Zack Williams6f5a6e72016-08-10 17:45:27 -070013 name: "{{ item.name }}"
14 command: autostart
Zack Williamsd31bbc92016-05-20 11:43:18 -070015 with_items: "{{ head_vm_list }}"
16
David K. Bainbridged3da6082016-08-11 14:01:27 -070017- name: fetch IP of DHCP harvester
Zack Williams6f5a6e72016-08-10 17:45:27 -070018 when: on_maas
David K. Bainbridged3da6082016-08-11 14:01:27 -070019 command: docker-ip harvester
20 register: harvester_ip
21 changed_when: False
David K. Bainbridged3da6082016-08-11 14:01:27 -070022
23- name: force a harvest to get VM name resolution
Zack Williams6f5a6e72016-08-10 17:45:27 -070024 when: on_maas
David K. Bainbridged3da6082016-08-11 14:01:27 -070025 uri:
26 url: http://{{ harvester_ip.stdout }}:8954/harvest
27 method: POST
David K. Bainbridged3da6082016-08-11 14:01:27 -070028
29- name: wait for VM name resolution
Zack Williams6f5a6e72016-08-10 17:45:27 -070030 when: on_maas
David K. Bainbridged3da6082016-08-11 14:01:27 -070031 host_dns_check:
32 hosts: "{{ head_vm_list | map(attribute='name') | list }}"
33 command_on_fail: "curl -sS --connect-timeout 3 -XPOST http://{{ harvester_ip.stdout }}:8954/harvest"
34 register: all_resolved
35 until: all_resolved.everyone == "OK"
36 retries: 5
37 delay: 10
38 failed_when: all_resolved.everyone != "OK"
David K. Bainbridged3da6082016-08-11 14:01:27 -070039
Zack Williamsd31bbc92016-05-20 11:43:18 -070040- name: wait for VM's to come up
41 wait_for:
42 host={{ item.name }}
43 port=22
44 with_items: "{{ head_vm_list }}"
45
46- name: Create /etc/ansible/hosts file
47 become: yes
48 template:
49 src=ansible_hosts.j2
50 dest=/etc/ansible/hosts
51
52- name: Verify that we can log into every VM
53 command: ansible services -m ping -u ubuntu
54
55- name: Have VM's use the apt-cache
56 command: ansible services -b -u ubuntu -m lineinfile -a "dest=/etc/apt/apt.conf.d/02apt-cacher-ng create=yes mode=0644 owner=root group=root regexp='^Acquire' line='Acquire::http { Proxy \"http://{{ apt_cacher_name }}:{{ apt_cacher_port | default('3142') }}\"; };'"
57
Andy Bavier42eeab62016-07-01 16:48:57 -040058- name: Update apt cache
Zack Williams6f5a6e72016-08-10 17:45:27 -070059 command: ansible services -m apt -b -u ubuntu -a "update_cache=yes cache_valid_time=3600"
60
61- name: Update software in all the VMs
62 when: run_dist_upgrade
63 command: ansible services -m apt -b -u ubuntu -a "upgrade=dist"
Zack Williamsa3e40562016-07-05 12:05:39 -070064
Zack Williamsd31bbc92016-05-20 11:43:18 -070065- name: Create VM's eth0 interface config file for DNS config via resolvconf program
Zack Williams6f5a6e72016-08-10 17:45:27 -070066 when: not on_maas
Zack Williamsd31bbc92016-05-20 11:43:18 -070067 template:
68 src=eth0.cfg.j2
69 dest={{ ansible_user_dir }}/eth0.cfg
70
71- name: Copy eth0 interface config file to all VMs
Andy Bavier0481a8a2016-07-14 13:01:45 +020072 when: not on_maas
Zack Williams6f5a6e72016-08-10 17:45:27 -070073 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"
Zack Williamsd31bbc92016-05-20 11:43:18 -070074
75- name: Restart eth0 interface on all VMs
Andy Bavier0481a8a2016-07-14 13:01:45 +020076 when: not on_maas
Zack Williams6f5a6e72016-08-10 17:45:27 -070077 command: ansible services -b -u ubuntu -m shell -a "ifdown eth0 ; ifup eth0"
Zack Williamsd31bbc92016-05-20 11:43:18 -070078
79- name: Verify that we can log into every VM after restarting network interfaces
Andy Bavier0481a8a2016-07-14 13:01:45 +020080 when: not on_maas
Zack Williams6f5a6e72016-08-10 17:45:27 -070081 command: ansible services -m ping -u ubuntu
Zack Williamsd31bbc92016-05-20 11:43:18 -070082
Zack Williams2cffa0f2016-05-20 12:18:47 -070083# sshkey is registered in head-prep task
Zack Williamse4fbacc2016-05-21 07:18:43 -070084- name: Enable root ssh login on VM's that require it
Zack Williams2cffa0f2016-05-20 12:18:47 -070085 command: ansible {{ item.name }} -b -u ubuntu -m authorized_key -a "user='root' key='{{ sshkey.stdout }}'"
86 with_items: "{{ head_vm_list | selectattr('root_ssh_login', 'defined') | list }}"
87
Zack Williams7d6747d2016-06-20 10:38:59 -070088- name: Copy over docker installation playbook and docker apt-key
Zack Williamse4fbacc2016-05-21 07:18:43 -070089 copy:
Zack Williams7d6747d2016-06-20 10:38:59 -070090 src="{{ item }}"
91 dest="{{ ansible_user_dir }}/{{ item }}"
92 with_items:
93 - "docker-install-playbook.yml"
94 - "docker_apt_key.gpg"
Zack Williamse4fbacc2016-05-21 07:18:43 -070095
96- name: Install docker in VM's that require it
Zack Williams9e74c4a2016-05-21 10:00:03 -070097 command: ansible-playbook "{{ ansible_user_dir }}/docker-install-playbook.yml"
Zack Williams6f5a6e72016-08-10 17:45:27 -070098