launch_instances.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. - name: Create the libvirt storage directory for openshift
  2. file:
  3. dest: '{{ libvirt_storage_pool_path }}'
  4. state: directory
  5. - name: Download Base Cloud image
  6. get_url:
  7. url: '{{ base_image_url }}'
  8. sha256sum: '{{ base_image_sha256 }}'
  9. dest: '{{ libvirt_storage_pool_path }}/{{ base_image_name }}'
  10. - name: Create the cloud-init config drive path
  11. file:
  12. dest: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/openstack/latest'
  13. state: directory
  14. with_items: '{{ instances }}'
  15. - name: Create the cloud-init config drive files
  16. template:
  17. src: '{{ item[1] }}'
  18. dest: '{{ libvirt_storage_pool_path }}/{{ item[0] }}_configdrive/openstack/latest/{{ item[1] }}'
  19. with_nested:
  20. - '{{ instances }}'
  21. - [ user-data, meta-data ]
  22. - name: Create the cloud-init config drive
  23. command: 'genisoimage -output {{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso -volid cidata -joliet -rock user-data meta-data'
  24. args:
  25. chdir: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/openstack/latest'
  26. creates: '{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'
  27. with_items: '{{ instances }}'
  28. - name: Create the libvirt storage pool for openshift
  29. command: 'virsh -c {{ libvirt_uri }} pool-create-as {{ libvirt_storage_pool }} dir --target {{ libvirt_storage_pool_path }}'
  30. ignore_errors: yes
  31. - name: Refresh the libvirt storage pool for openshift
  32. command: 'virsh -c {{ libvirt_uri }} pool-refresh {{ libvirt_storage_pool }}'
  33. - name: Create VMs drives
  34. command: 'virsh -c {{ libvirt_uri }} vol-create-as {{ libvirt_storage_pool }} {{ item }}.qcow2 10G --format qcow2 --backing-vol {{ base_image_name }} --backing-vol-format qcow2'
  35. with_items: '{{ instances }}'
  36. - name: Create VMs
  37. virt:
  38. name: '{{ item }}'
  39. command: define
  40. xml: "{{ lookup('template', '../templates/domain.xml') }}"
  41. uri: '{{ libvirt_uri }}'
  42. with_items: '{{ instances }}'
  43. - name: Start VMs
  44. virt:
  45. name: '{{ item }}'
  46. state: running
  47. uri: '{{ libvirt_uri }}'
  48. with_items: '{{ instances }}'
  49. - name: Collect MAC addresses of the VMs
  50. shell: 'virsh -c {{ libvirt_uri }} dumpxml {{ item }} | xmllint --xpath "string(//domain/devices/interface/mac/@address)" -'
  51. register: scratch_mac
  52. with_items: '{{ instances }}'
  53. - name: Wait for the VMs to get an IP
  54. command: "egrep -c '{{ scratch_mac.results | oo_collect('stdout') | join('|') }}' /proc/net/arp"
  55. ignore_errors: yes
  56. register: nb_allocated_ips
  57. until: nb_allocated_ips.stdout == '{{ instances | length }}'
  58. retries: 30
  59. delay: 1
  60. - name: Collect IP addresses of the VMs
  61. shell: "awk '/{{ item.stdout }}/ {print $1}' /proc/net/arp"
  62. register: scratch_ip
  63. with_items: '{{ scratch_mac.results }}'
  64. - set_fact:
  65. ips: "{{ scratch_ip.results | oo_collect('stdout') }}"
  66. - name: Add new instances
  67. add_host:
  68. hostname: '{{ item.0 }}'
  69. ansible_ssh_host: '{{ item.1 }}'
  70. ansible_ssh_user: root
  71. groups: 'tag_env-{{ cluster }}, tag_host-type-{{ type }}, tag_env-host-type-{{ cluster }}-openshift-{{ type }}'
  72. with_together:
  73. - instances
  74. - ips
  75. - name: Wait for ssh
  76. wait_for:
  77. host: '{{ item }}'
  78. port: 22
  79. with_items: ips
  80. - name: Wait for root user setup
  81. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item }} echo root user is setup'
  82. register: result
  83. until: result.rc == 0
  84. retries: 30
  85. delay: 1
  86. with_items: ips