launch_instances.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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: '{{ 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: Create the cloud-init config drive
  45. command: 'genisoimage -output {{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso -volid cidata -joliet -rock user-data meta-data'
  46. args:
  47. chdir: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  48. creates: '{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'
  49. with_items: instances
  50. - name: Refresh the libvirt storage pool for openshift
  51. command: 'virsh -c {{ libvirt_uri }} pool-refresh {{ libvirt_storage_pool }}'
  52. - name: Create VM drives
  53. command: 'virsh -c {{ libvirt_uri }} vol-create-as {{ libvirt_storage_pool }} {{ item }}.qcow2 10G --format qcow2 --backing-vol {{ image_name }} --backing-vol-format qcow2'
  54. with_items: instances
  55. - name: Create VM docker drives
  56. command: 'virsh -c {{ libvirt_uri }} vol-create-as {{ libvirt_storage_pool }} {{ item }}-docker.qcow2 10G --format qcow2 --allocation 0'
  57. with_items: instances
  58. - name: Create VMs
  59. virt:
  60. name: '{{ item }}'
  61. command: define
  62. xml: "{{ lookup('template', '../templates/domain.xml') }}"
  63. uri: '{{ libvirt_uri }}'
  64. with_items: instances
  65. - name: Start VMs
  66. virt:
  67. name: '{{ item }}'
  68. state: running
  69. uri: '{{ libvirt_uri }}'
  70. with_items: instances
  71. - name: Wait for the VMs to get an IP
  72. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | egrep -c ''{{ instances | join("|") }}'''
  73. register: nb_allocated_ips
  74. until: nb_allocated_ips.stdout == '{{ instances | length }}'
  75. retries: 60
  76. delay: 3
  77. when: instances | length != 0
  78. - name: Collect IP addresses of the VMs
  79. shell: 'virsh -c {{ libvirt_uri }} net-dhcp-leases openshift-ansible | awk ''$6 == "{{ item }}" {gsub(/\/.*/, "", $5); print $5}'''
  80. register: scratch_ip
  81. with_items: instances
  82. - set_fact:
  83. ips: "{{ scratch_ip.results | default([]) | oo_collect('stdout') }}"
  84. - set_fact:
  85. node_label:
  86. type: "{{ g_sub_host_type }}"
  87. when: instances | length > 0 and type == "node"
  88. - set_fact:
  89. node_label:
  90. type: "{{ type }}"
  91. when: instances | length > 0 and type != "node"
  92. - name: Add new instances
  93. add_host:
  94. hostname: '{{ item.0 }}'
  95. ansible_ssh_host: '{{ item.1 }}'
  96. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  97. ansible_become: "{{ deployment_vars[deployment_type].sudo }}"
  98. groups: "tag_environment-{{ cluster_env }}, tag_host-type-{{ type }}, tag_sub-host-type-{{ g_sub_host_type }}, tag_clusterid-{{ cluster_id }}"
  99. openshift_node_labels: "{{ node_label }}"
  100. with_together:
  101. - instances
  102. - ips
  103. - name: Wait for ssh
  104. wait_for:
  105. host: '{{ item }}'
  106. port: 22
  107. with_items: ips
  108. - name: Wait for openshift user setup
  109. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null openshift@{{ item.1 }} echo openshift user is setup'
  110. register: result
  111. until: result.rc == 0
  112. retries: 30
  113. delay: 1
  114. with_together:
  115. - instances
  116. - ips