launch.yml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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 node_port_incoming={{ openstack_node_port_access_from }}
  34. -P num_etcd={{ num_etcd }}
  35. -P num_masters={{ num_masters }}
  36. -P num_nodes={{ num_nodes }}
  37. -P num_infra={{ num_infra }}
  38. -P etcd_image={{ deployment_vars[deployment_type].image }}
  39. -P master_image={{ deployment_vars[deployment_type].image }}
  40. -P node_image={{ deployment_vars[deployment_type].image }}
  41. -P infra_image={{ deployment_vars[deployment_type].image }}
  42. -P dns_image={{ deployment_vars[deployment_type].image }}
  43. -P etcd_flavor={{ openstack_flavor["etcd"] }}
  44. -P master_flavor={{ openstack_flavor["master"] }}
  45. -P node_flavor={{ openstack_flavor["node"] }}
  46. -P infra_flavor={{ openstack_flavor["infra"] }}
  47. -P dns_flavor={{ openstack_flavor["dns"] }}
  48. openshift-ansible-{{ cluster_id }}-stack'
  49. args:
  50. chdir: '{{ playbook_dir }}'
  51. - name: Wait for OpenStack Stack readiness
  52. shell: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack | awk ''$2 == "stack_status" {print $4}'''
  53. register: stack_show_status_result
  54. until: stack_show_status_result.stdout not in ['CREATE_IN_PROGRESS', 'UPDATE_IN_PROGRESS']
  55. retries: 30
  56. delay: 5
  57. - name: Display the stack resources
  58. command: 'heat resource-list openshift-ansible-{{ cluster_id }}-stack'
  59. register: stack_resource_list_result
  60. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  61. - name: Display the stack status
  62. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  63. register: stack_show_result
  64. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  65. - name: Delete the stack
  66. command: 'heat stack-delete openshift-ansible-{{ cluster_id }}-stack'
  67. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  68. - fail:
  69. msg: |
  70. +--------------------------------------+
  71. | ^ |
  72. | /!\ Failed to create the heat stack |
  73. | /___\ |
  74. +--------------------------------------+
  75. Here is the list of stack resources and their status:
  76. {{ stack_resource_list_result.stdout }}
  77. Here is the status of the stack:
  78. {{ stack_show_result.stdout }}
  79. ^ Failed to create the heat stack
  80. /!\
  81. /___\ Please check the `stack_status_reason` line in the above array to know why.
  82. when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  83. - name: Read OpenStack Stack outputs
  84. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  85. register: stack_show_result
  86. - set_fact:
  87. parsed_outputs: "{{ stack_show_result | oo_parse_heat_stack_outputs }}"
  88. - name: Add new etcd instances groups and variables
  89. add_host:
  90. hostname: '{{ item[0] }}'
  91. ansible_ssh_host: '{{ item[2] }}'
  92. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  93. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  94. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_etcd, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  95. openshift_node_labels:
  96. type: "etcd"
  97. with_together:
  98. - '{{ parsed_outputs.etcd_names }}'
  99. - '{{ parsed_outputs.etcd_ips }}'
  100. - '{{ parsed_outputs.etcd_floating_ips }}'
  101. - name: Add new master instances groups and variables
  102. add_host:
  103. hostname: '{{ item[0] }}'
  104. ansible_ssh_host: '{{ item[2] }}'
  105. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  106. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  107. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_master, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  108. openshift_node_labels:
  109. type: "master"
  110. with_together:
  111. - '{{ parsed_outputs.master_names }}'
  112. - '{{ parsed_outputs.master_ips }}'
  113. - '{{ parsed_outputs.master_floating_ips }}'
  114. - name: Add new node instances groups and variables
  115. add_host:
  116. hostname: '{{ item[0] }}'
  117. ansible_ssh_host: '{{ item[2] }}'
  118. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  119. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  120. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_compute, tag_clusterid_{{ cluster_id }}'
  121. openshift_node_labels:
  122. type: "compute"
  123. with_together:
  124. - '{{ parsed_outputs.node_names }}'
  125. - '{{ parsed_outputs.node_ips }}'
  126. - '{{ parsed_outputs.node_floating_ips }}'
  127. - name: Add new infra instances groups and variables
  128. add_host:
  129. hostname: '{{ item[0] }}'
  130. ansible_ssh_host: '{{ item[2] }}'
  131. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  132. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  133. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_infra, tag_clusterid_{{ cluster_id }}'
  134. openshift_node_labels:
  135. type: "infra"
  136. with_together:
  137. - '{{ parsed_outputs.infra_names }}'
  138. - '{{ parsed_outputs.infra_ips }}'
  139. - '{{ parsed_outputs.infra_floating_ips }}'
  140. - name: Add DNS groups and variables
  141. add_host:
  142. hostname: '{{ parsed_outputs.dns_name }}'
  143. ansible_ssh_host: '{{ parsed_outputs.dns_floating_ip }}'
  144. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  145. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  146. groups: '{{ cluster_id }}-dns'
  147. - name: Wait for ssh
  148. wait_for:
  149. host: '{{ item }}'
  150. port: 22
  151. with_flattened:
  152. - '{{ parsed_outputs.master_floating_ips }}'
  153. - '{{ parsed_outputs.node_floating_ips }}'
  154. - '{{ parsed_outputs.infra_floating_ips }}'
  155. - '{{ parsed_outputs.dns_floating_ip }}'
  156. - name: Wait for user setup
  157. 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'
  158. register: result
  159. until: result.rc == 0
  160. retries: 30
  161. delay: 1
  162. with_flattened:
  163. - '{{ parsed_outputs.master_floating_ips }}'
  164. - '{{ parsed_outputs.node_floating_ips }}'
  165. - '{{ parsed_outputs.infra_floating_ips }}'
  166. - '{{ parsed_outputs.dns_floating_ip }}'
  167. - include: update.yml
  168. - include: list.yml