launch_instances.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 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: '{{ libvirt_storage_pool_path }}/{{ [image_name, image_compression] | difference([""]) | join(".") }}'
  15. when: ( lookup("oo_option", "skip_image_download") | default("no", True) | lower ) in ["false", "no"]
  16. register: downloaded_image
  17. - name: Uncompress xz compressed base cloud image
  18. command: 'unxz -kf {{ libvirt_storage_pool_path }}/{{ [image_name, image_compression] | join(".") }}'
  19. args:
  20. creates: '{{ libvirt_storage_pool_path }}/{{ image_name }}'
  21. when: image_compression in ["xz"] and downloaded_image.changed
  22. - name: Uncompress tgz compressed base cloud image
  23. command: 'tar zxvf {{ libvirt_storage_pool_path }}/{{ [image_name, image_compression] | join(".") }}'
  24. args:
  25. creates: '{{ libvirt_storage_pool_path }}/{{ image_name }}'
  26. when: image_compression in ["tgz"] and downloaded_image.changed
  27. - name: Uncompress gzip compressed base cloud image
  28. command: 'gunzip {{ libvirt_storage_pool_path }}/{{ [image_name, image_compression] | join(".") }}'
  29. args:
  30. creates: '{{ libvirt_storage_pool_path }}/{{ image_name }}'
  31. when: image_compression in ["gz"] and downloaded_image.changed
  32. - name: Create the cloud-init config drive path
  33. file:
  34. dest: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  35. state: directory
  36. with_items: '{{ instances }}'
  37. - name: Create the cloud-init config drive files
  38. template:
  39. src: '{{ item[1] }}'
  40. dest: '{{ libvirt_storage_pool_path }}/{{ item[0] }}_configdrive/{{ item[1] }}'
  41. with_nested:
  42. - '{{ instances }}'
  43. - [ user-data, meta-data ]
  44. - name: Check for genisoimage
  45. command: which genisoimage
  46. register: which_genisoimage
  47. - name: Create the cloud-init config drive
  48. command: "{{ 'genisoimage' if which_genisoimage.rc == 0 else 'mkisofs' }} -output {{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso -volid cidata -joliet -rock user-data meta-data"
  49. args:
  50. chdir: "{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/"
  51. creates: "{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso"
  52. with_items: '{{ instances }}'
  53. - name: Refresh the libvirt storage pool for openshift
  54. command: 'virsh -c {{ libvirt_uri }} pool-refresh {{ libvirt_storage_pool }}'
  55. - name: Create VM drives
  56. command: 'virsh -c {{ libvirt_uri }} vol-create-as {{ libvirt_storage_pool }} {{ item }}.qcow2 10G --format qcow2 --backing-vol {{ image_name }} --backing-vol-format qcow2'
  57. with_items: '{{ instances }}'
  58. - name: Create VM docker drives
  59. command: 'virsh -c {{ libvirt_uri }} vol-create-as {{ libvirt_storage_pool }} {{ item }}-docker.qcow2 10G --format qcow2 --allocation 0'
  60. with_items: '{{ instances }}'
  61. - name: Create VMs
  62. virt:
  63. name: '{{ item }}'
  64. command: define
  65. xml: "{{ lookup('template', '../templates/domain.xml') }}"
  66. uri: '{{ libvirt_uri }}'
  67. with_items: '{{ instances }}'
  68. - name: Start VMs
  69. virt:
  70. name: '{{ item }}'
  71. state: running
  72. uri: '{{ libvirt_uri }}'
  73. with_items: '{{ instances }}'
  74. - name: Wait for the VMs to get an IP
  75. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases {{ libvirt_network }} | egrep -c ''{{ instances | join("|") }}'''
  76. register: nb_allocated_ips
  77. until: nb_allocated_ips.stdout == '{{ instances | length }}'
  78. retries: 60
  79. delay: 3
  80. when: instances | length != 0
  81. - name: Collect IP addresses of the VMs
  82. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases {{ libvirt_network }} | awk ''$6 == "{{ item }}" {gsub(/\/.*/, "", $5); print $5}'''
  83. register: scratch_ip
  84. with_items: '{{ instances }}'
  85. - set_fact:
  86. ips: "{{ scratch_ip.results | default([]) | oo_collect('stdout') }}"
  87. - set_fact:
  88. node_label:
  89. type: "{{ g_sub_host_type }}"
  90. when: instances | length > 0 and type == "node"
  91. - set_fact:
  92. node_label:
  93. type: "{{ type }}"
  94. when: instances | length > 0 and type != "node"
  95. - name: Add new instances
  96. add_host:
  97. hostname: '{{ item.0 }}'
  98. ansible_ssh_host: '{{ item.1 }}'
  99. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  100. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  101. groups: "tag_environment-{{ cluster_env }}, tag_host-type-{{ type }}, tag_sub-host-type-{{ g_sub_host_type }}, tag_clusterid-{{ cluster_id }}"
  102. openshift_node_labels: "{{ node_label }}"
  103. libvirt_ip_address: "{{ item.1 }}"
  104. with_together:
  105. - '{{ instances }}'
  106. - '{{ ips }}'
  107. - name: Wait for ssh
  108. wait_for:
  109. host: '{{ item }}'
  110. port: 22
  111. with_items: '{{ ips }}'
  112. - name: Wait for openshift user setup
  113. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null openshift@{{ item.1 }} echo openshift user is setup'
  114. register: result
  115. until: result.rc == 0
  116. retries: 30
  117. delay: 1
  118. with_together:
  119. - '{{ instances }}'
  120. - '{{ ips }}'