launch_instances.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. ---
  2. # TODO: Add support for choosing base image based on deployment_type and os
  3. # wanted (os wanted needs support added in bin/cluster with sane defaults:
  4. # fedora/centos for origin, rhel for online/enterprise)
  5. # TODO: create a role to encapsulate some of this complexity, possibly also
  6. # create a module to manage the storage tasks, network tasks, and possibly
  7. # even handle the libvirt tasks to set metadata in the domain xml and be able
  8. # to create/query data about vms without having to use xml the python libvirt
  9. # bindings look like a good candidate for this
  10. - name: Download Base Cloud image
  11. get_url:
  12. url: '{{ image_url }}'
  13. sha256sum: '{{ image_sha256 }}'
  14. dest: '{{ os_libvirt_storage_pool_path }}/{{ [image_name, image_compression] | join(".") }}'
  15. when: '{{ ( lookup("oo_option", "skip_image_download") | default("no", True) | lower ) in ["false", "no"] }}'
  16. register: downloaded_image
  17. - name: Uncompress Base Cloud image
  18. command: 'unxz -kf {{ os_libvirt_storage_pool_path }}/{{ [image_name, image_compression] | join(".") }}'
  19. args:
  20. creates: '{{ os_libvirt_storage_pool_path }}/{{ image_name }}'
  21. when: image_compression in ["xz"] and downloaded_image.changed
  22. - name: Create the cloud-init config drive path
  23. file:
  24. dest: '{{ os_libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  25. state: directory
  26. with_items: instances
  27. - name: Create the cloud-init config drive files
  28. template:
  29. src: '{{ item[1] }}'
  30. dest: '{{ os_libvirt_storage_pool_path }}/{{ item[0] }}_configdrive/{{ item[1] }}'
  31. with_nested:
  32. - instances
  33. - [ user-data, meta-data ]
  34. - name: Create the cloud-init config drive
  35. command: 'genisoimage -output {{ os_libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso -volid cidata -joliet -rock user-data meta-data'
  36. args:
  37. chdir: '{{ os_libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  38. creates: '{{ os_libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'
  39. with_items: instances
  40. - name: Refresh the libvirt storage pool for openshift
  41. command: 'virsh -c {{ libvirt_uri }} pool-refresh {{ libvirt_storage_pool }}'
  42. - name: Create VMs drives
  43. command: 'virsh -c {{ libvirt_uri }} vol-create-as {{ os_libvirt_storage_pool }} {{ item }}.qcow2 10G --format qcow2 --backing-vol {{ image_name }} --backing-vol-format qcow2'
  44. with_items: instances
  45. - name: Create VMs
  46. virt:
  47. name: '{{ item }}'
  48. command: define
  49. xml: "{{ lookup('template', '../templates/domain.xml') }}"
  50. uri: '{{ libvirt_uri }}'
  51. with_items: instances
  52. - name: Start VMs
  53. virt:
  54. name: '{{ item }}'
  55. state: running
  56. uri: '{{ libvirt_uri }}'
  57. with_items: instances
  58. - name: Wait for the VMs to get an IP
  59. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | egrep -c ''{{ instances | join("|") }}'''
  60. register: nb_allocated_ips
  61. until: nb_allocated_ips.stdout == '{{ instances | length }}'
  62. retries: 60
  63. delay: 3
  64. when: instances | length != 0
  65. - name: Collect IP addresses of the VMs
  66. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | awk ''$6 == "{{ item }}" {gsub(/\/.*/, "", $5); print $5}'''
  67. register: scratch_ip
  68. with_items: instances
  69. - set_fact:
  70. ips: "{{ scratch_ip.results | default([]) | oo_collect('stdout') }}"
  71. - name: Add new instances
  72. add_host:
  73. hostname: '{{ item.0 }}'
  74. ansible_ssh_host: '{{ item.1 }}'
  75. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  76. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  77. groups: "tag_environment-{{ cluster_env }}, tag_host-type-{{ type }}, tag_sub-host-type-{{ g_sub_host_type }}, tag_clusterid-{{ cluster_id }}"
  78. with_together:
  79. - instances
  80. - ips
  81. - name: Wait for ssh
  82. wait_for:
  83. host: '{{ item }}'
  84. port: 22
  85. with_items: ips
  86. - name: Wait for openshift user setup
  87. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null openshift@{{ item.1 }} echo openshift user is setup'
  88. register: result
  89. until: result.rc == 0
  90. retries: 30
  91. delay: 1
  92. with_together:
  93. - instances
  94. - ips