launch.yml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. - fail:
  11. msg: "Deployment type not supported for OpenStack provider yet"
  12. when: deployment_type == 'online'
  13. # TODO: Write an Ansible module for dealing with HEAT stacks
  14. # Dealing with the outputs is currently terrible
  15. - name: Check OpenStack stack
  16. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  17. register: stack_show_result
  18. changed_when: false
  19. failed_when: stack_show_result.rc != 0 and 'Stack not found' not in stack_show_result.stderr
  20. - set_fact:
  21. heat_stack_action: 'stack-create'
  22. when: stack_show_result.rc == 1
  23. - set_fact:
  24. heat_stack_action: 'stack-update'
  25. when: stack_show_result.rc == 0
  26. - name: Create or Update OpenStack Stack
  27. command: 'heat {{ heat_stack_action }} -f {{ openstack_infra_heat_stack }}
  28. -P cluster_id={{ cluster_id }}
  29. -P cidr={{ openstack_network_cidr }}
  30. -P dns_nameservers={{ openstack_network_dns | join(",") }}
  31. -P external_net={{ openstack_network_external_net }}
  32. -P floating_ip_pool={{ openstack_floating_ip_pool }}
  33. -P ssh_public_key="{{ openstack_ssh_public_key }}"
  34. -P ssh_incoming={{ openstack_ssh_access_from }}
  35. -P num_etcd={{ num_etcd }}
  36. -P num_masters={{ num_masters }}
  37. -P num_nodes={{ num_nodes }}
  38. -P num_infra={{ num_infra }}
  39. -P etcd_image={{ deployment_vars[deployment_type].image }}
  40. -P master_image={{ deployment_vars[deployment_type].image }}
  41. -P node_image={{ deployment_vars[deployment_type].image }}
  42. -P infra_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. 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: 1
  54. failed_when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  55. - name: Read OpenStack Stack outputs
  56. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  57. register: stack_show_result
  58. - set_fact:
  59. parsed_outputs: "{{ stack_show_result | oo_parse_heat_stack_outputs }}"
  60. - name: Add new etcd instances groups and variables
  61. add_host:
  62. hostname: '{{ item[0] }}'
  63. ansible_ssh_host: '{{ item[2] }}'
  64. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  65. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  66. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_etcd, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  67. with_together:
  68. - parsed_outputs.etcd_names
  69. - parsed_outputs.etcd_ips
  70. - parsed_outputs.etcd_floating_ips
  71. - name: Add new master instances groups and variables
  72. add_host:
  73. hostname: '{{ item[0] }}'
  74. ansible_ssh_host: '{{ item[2] }}'
  75. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  76. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  77. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_master, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  78. with_together:
  79. - parsed_outputs.master_names
  80. - parsed_outputs.master_ips
  81. - parsed_outputs.master_floating_ips
  82. - name: Add new node instances groups and variables
  83. add_host:
  84. hostname: '{{ item[0] }}'
  85. ansible_ssh_host: '{{ item[2] }}'
  86. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  87. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  88. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_compute, tag_clusterid_{{ cluster_id }}'
  89. with_together:
  90. - parsed_outputs.node_names
  91. - parsed_outputs.node_ips
  92. - parsed_outputs.node_floating_ips
  93. - name: Add new infra instances groups and variables
  94. add_host:
  95. hostname: '{{ item[0] }}'
  96. ansible_ssh_host: '{{ item[2] }}'
  97. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  98. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  99. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_infra, tag_clusterid_{{ cluster_id }}'
  100. with_together:
  101. - parsed_outputs.infra_names
  102. - parsed_outputs.infra_ips
  103. - parsed_outputs.infra_floating_ips
  104. - name: Wait for ssh
  105. wait_for:
  106. host: '{{ item }}'
  107. port: 22
  108. with_flattened:
  109. - parsed_outputs.master_floating_ips
  110. - parsed_outputs.node_floating_ips
  111. - parsed_outputs.infra_floating_ips
  112. - name: Wait for user setup
  113. 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'
  114. register: result
  115. until: result.rc == 0
  116. retries: 30
  117. delay: 1
  118. with_flattened:
  119. - parsed_outputs.master_floating_ips
  120. - parsed_outputs.node_floating_ips
  121. - parsed_outputs.infra_floating_ips
  122. - include: update.yml
  123. - include: list.yml