launch_instances.yml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 }}'
  15. when: '{{ ( lookup("oo_option", "skip_image_download") | default("no", True) | lower ) in ["false", "no"] }}'
  16. - name: Create the cloud-init config drive path
  17. file:
  18. dest: '{{ os_libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  19. state: directory
  20. with_items: instances
  21. - name: Create the cloud-init config drive files
  22. template:
  23. src: '{{ item[1] }}'
  24. dest: '{{ os_libvirt_storage_pool_path }}/{{ item[0] }}_configdrive/{{ item[1] }}'
  25. with_nested:
  26. - instances
  27. - [ user-data, meta-data ]
  28. - name: Create the cloud-init config drive
  29. command: 'genisoimage -output {{ os_libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso -volid cidata -joliet -rock user-data meta-data'
  30. args:
  31. chdir: '{{ os_libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  32. creates: '{{ os_libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'
  33. with_items: instances
  34. - name: Refresh the libvirt storage pool for openshift
  35. command: 'virsh -c {{ libvirt_uri }} pool-refresh {{ libvirt_storage_pool }}'
  36. - name: Create VMs drives
  37. 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'
  38. with_items: instances
  39. - name: Create VMs
  40. virt:
  41. name: '{{ item }}'
  42. command: define
  43. xml: "{{ lookup('template', '../templates/domain.xml') }}"
  44. uri: '{{ libvirt_uri }}'
  45. with_items: instances
  46. - name: Start VMs
  47. virt:
  48. name: '{{ item }}'
  49. state: running
  50. uri: '{{ libvirt_uri }}'
  51. with_items: instances
  52. - name: Wait for the VMs to get an IP
  53. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | egrep -c ''{{ instances | join("|") }}'''
  54. register: nb_allocated_ips
  55. until: nb_allocated_ips.stdout == '{{ instances | length }}'
  56. retries: 30
  57. delay: 1
  58. - name: Collect IP addresses of the VMs
  59. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | awk ''$6 == "{{ item }}" {gsub(/\/.*/, "", $5); print $5}'''
  60. register: scratch_ip
  61. with_items: instances
  62. - set_fact:
  63. ips: "{{ scratch_ip.results | oo_collect('stdout') }}"
  64. - name: Add new instances
  65. add_host:
  66. hostname: '{{ item.0 }}'
  67. ansible_ssh_host: '{{ item.1 }}'
  68. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  69. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  70. groups: 'tag_env-{{ cluster }}, tag_host-type-{{ type }}, tag_env-host-type-{{ cluster }}-openshift-{{ type }}'
  71. with_together:
  72. - instances
  73. - ips
  74. - name: Wait for ssh
  75. wait_for:
  76. host: '{{ item }}'
  77. port: 22
  78. with_items: ips
  79. - name: Wait for openshift user setup
  80. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null openshift@{{ item.1 }} echo openshift user is setup'
  81. register: result
  82. until: result.rc == 0
  83. retries: 30
  84. delay: 1
  85. with_together:
  86. - instances
  87. - ips