launch.yml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. become: no
  5. connection: local
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  10. # TODO: Write an Ansible module for dealing with HEAT stacks
  11. # Dealing with the outputs is currently terrible
  12. - name: Check OpenStack stack
  13. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  14. register: stack_show_result
  15. changed_when: false
  16. failed_when: stack_show_result.rc != 0 and 'Stack not found' not in stack_show_result.stderr
  17. - set_fact:
  18. heat_stack_action: 'stack-create'
  19. when: stack_show_result.rc == 1
  20. - set_fact:
  21. heat_stack_action: 'stack-update'
  22. when: stack_show_result.rc == 0
  23. - name: Create or Update OpenStack Stack
  24. command: 'heat {{ heat_stack_action }} -f {{ openstack_infra_heat_stack }}
  25. --timeout 3
  26. -P cluster_env={{ cluster_env }}
  27. -P cluster_id={{ cluster_id }}
  28. -P subnet_24_prefix={{ openstack_subnet_24_prefix }}
  29. -P dns_nameservers={{ openstack_network_dns | join(",") }}
  30. -P external_net={{ openstack_network_external_net }}
  31. -P ssh_public_key="{{ openstack_ssh_public_key }}"
  32. -P ssh_incoming={{ openstack_ssh_access_from }}
  33. -P num_etcd={{ num_etcd }}
  34. -P num_masters={{ num_masters }}
  35. -P num_nodes={{ num_nodes }}
  36. -P num_infra={{ num_infra }}
  37. -P etcd_image={{ deployment_vars[deployment_type].image }}
  38. -P master_image={{ deployment_vars[deployment_type].image }}
  39. -P node_image={{ deployment_vars[deployment_type].image }}
  40. -P infra_image={{ deployment_vars[deployment_type].image }}
  41. -P dns_image={{ deployment_vars[deployment_type].image }}
  42. -P etcd_flavor={{ openstack_flavor["etcd"] }}
  43. -P master_flavor={{ openstack_flavor["master"] }}
  44. -P node_flavor={{ openstack_flavor["node"] }}
  45. -P infra_flavor={{ openstack_flavor["infra"] }}
  46. -P dns_flavor=m1.small
  47. openshift-ansible-{{ cluster_id }}-stack'
  48. - name: Wait for OpenStack Stack readiness
  49. shell: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack | awk ''$2 == "stack_status" {print $4}'''
  50. register: stack_show_status_result
  51. until: stack_show_status_result.stdout not in ['CREATE_IN_PROGRESS', 'UPDATE_IN_PROGRESS']
  52. retries: 30
  53. delay: 5
  54. - name: Display the stack resources
  55. command: 'heat resource-list openshift-ansible-{{ cluster_id }}-stack'
  56. register: stack_resource_list_result
  57. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  58. - name: Display the stack status
  59. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  60. register: stack_show_result
  61. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  62. - name: Delete the stack
  63. command: 'heat stack-delete openshift-ansible-{{ cluster_id }}-stack'
  64. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  65. - fail:
  66. msg: |
  67. +--------------------------------------+
  68. | ^ |
  69. | /!\ Failed to create the heat stack |
  70. | /___\ |
  71. +--------------------------------------+
  72. Here is the list of stack resources and their status:
  73. {{ stack_resource_list_result.stdout }}
  74. Here is the status of the stack:
  75. {{ stack_show_result.stdout }}
  76. ^ Failed to create the heat stack
  77. /!\
  78. /___\ Please check the `stack_status_reason` line in the above array to know why.
  79. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  80. - name: Read OpenStack Stack outputs
  81. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  82. register: stack_show_result
  83. - set_fact:
  84. parsed_outputs: "{{ stack_show_result | oo_parse_heat_stack_outputs }}"
  85. - name: Add new etcd instances groups and variables
  86. add_host:
  87. hostname: '{{ item[0] }}'
  88. ansible_ssh_host: '{{ item[2] }}'
  89. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  90. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  91. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_etcd, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  92. openshift_node_labels:
  93. type: "etcd"
  94. with_together:
  95. - parsed_outputs.etcd_names
  96. - parsed_outputs.etcd_ips
  97. - parsed_outputs.etcd_floating_ips
  98. - name: Add new master instances groups and variables
  99. add_host:
  100. hostname: '{{ item[0] }}'
  101. ansible_ssh_host: '{{ item[2] }}'
  102. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  103. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  104. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_master, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  105. openshift_node_labels:
  106. type: "master"
  107. with_together:
  108. - parsed_outputs.master_names
  109. - parsed_outputs.master_ips
  110. - parsed_outputs.master_floating_ips
  111. - name: Add new node instances groups and variables
  112. add_host:
  113. hostname: '{{ item[0] }}'
  114. ansible_ssh_host: '{{ item[2] }}'
  115. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  116. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  117. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_compute, tag_clusterid_{{ cluster_id }}'
  118. openshift_node_labels:
  119. type: "compute"
  120. with_together:
  121. - parsed_outputs.node_names
  122. - parsed_outputs.node_ips
  123. - parsed_outputs.node_floating_ips
  124. - name: Add new infra instances groups and variables
  125. add_host:
  126. hostname: '{{ item[0] }}'
  127. ansible_ssh_host: '{{ item[2] }}'
  128. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  129. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  130. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_infra, tag_clusterid_{{ cluster_id }}'
  131. openshift_node_labels:
  132. type: "infra"
  133. with_together:
  134. - parsed_outputs.infra_names
  135. - parsed_outputs.infra_ips
  136. - parsed_outputs.infra_floating_ips
  137. - name: Add DNS groups and variables
  138. add_host:
  139. hostname: '{{ parsed_outputs.dns_name }}'
  140. ansible_ssh_host: '{{ parsed_outputs.dns_floating_ip }}'
  141. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  142. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  143. groups: '{{ cluster_id }}-dns'
  144. - name: Wait for ssh
  145. wait_for:
  146. host: '{{ item }}'
  147. port: 22
  148. with_flattened:
  149. - parsed_outputs.master_floating_ips
  150. - parsed_outputs.node_floating_ips
  151. - parsed_outputs.infra_floating_ips
  152. - parsed_outputs.dns_floating_ip
  153. - name: Wait for user setup
  154. command: 'ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null {{ deployment_vars[deployment_type].ssh_user }}@{{ item }} echo {{ deployment_vars[deployment_type].ssh_user }} user is setup'
  155. register: result
  156. until: result.rc == 0
  157. retries: 30
  158. delay: 1
  159. with_flattened:
  160. - parsed_outputs.master_floating_ips
  161. - parsed_outputs.node_floating_ips
  162. - parsed_outputs.infra_floating_ips
  163. - parsed_outputs.dns_floating_ip
  164. - include: update.yml
  165. - include: list.yml