launch.yml 7.2 KB

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