launch.yml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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_env={{ cluster_env }}
  29. -P cluster_id={{ cluster_id }}
  30. -P cidr={{ openstack_network_cidr }}
  31. -P dns_nameservers={{ openstack_network_dns | join(",") }}
  32. -P external_net={{ openstack_network_external_net }}
  33. -P floating_ip_pool={{ openstack_floating_ip_pool }}
  34. -P ssh_public_key="{{ openstack_ssh_public_key }}"
  35. -P ssh_incoming={{ openstack_ssh_access_from }}
  36. -P num_etcd={{ num_etcd }}
  37. -P num_masters={{ num_masters }}
  38. -P num_nodes={{ num_nodes }}
  39. -P num_infra={{ num_infra }}
  40. -P etcd_image={{ deployment_vars[deployment_type].image }}
  41. -P master_image={{ deployment_vars[deployment_type].image }}
  42. -P node_image={{ deployment_vars[deployment_type].image }}
  43. -P infra_image={{ deployment_vars[deployment_type].image }}
  44. -P etcd_flavor={{ openstack_flavor["etcd"] }}
  45. -P master_flavor={{ openstack_flavor["master"] }}
  46. -P node_flavor={{ openstack_flavor["node"] }}
  47. -P infra_flavor={{ openstack_flavor["infra"] }}
  48. openshift-ansible-{{ cluster_id }}-stack'
  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: 1
  55. failed_when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  56. - name: Read OpenStack Stack outputs
  57. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  58. register: stack_show_result
  59. - set_fact:
  60. parsed_outputs: "{{ stack_show_result | oo_parse_heat_stack_outputs }}"
  61. - name: Add new etcd instances groups and variables
  62. add_host:
  63. hostname: '{{ item[0] }}'
  64. ansible_ssh_host: '{{ item[2] }}'
  65. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  66. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  67. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_etcd, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  68. with_together:
  69. - parsed_outputs.etcd_names
  70. - parsed_outputs.etcd_ips
  71. - parsed_outputs.etcd_floating_ips
  72. - name: Add new master instances groups and variables
  73. add_host:
  74. hostname: '{{ item[0] }}'
  75. ansible_ssh_host: '{{ item[2] }}'
  76. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  77. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  78. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_master, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'
  79. with_together:
  80. - parsed_outputs.master_names
  81. - parsed_outputs.master_ips
  82. - parsed_outputs.master_floating_ips
  83. - name: Add new node instances groups and variables
  84. add_host:
  85. hostname: '{{ item[0] }}'
  86. ansible_ssh_host: '{{ item[2] }}'
  87. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  88. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  89. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_compute, tag_clusterid_{{ cluster_id }}'
  90. with_together:
  91. - parsed_outputs.node_names
  92. - parsed_outputs.node_ips
  93. - parsed_outputs.node_floating_ips
  94. - name: Add new infra instances groups and variables
  95. add_host:
  96. hostname: '{{ item[0] }}'
  97. ansible_ssh_host: '{{ item[2] }}'
  98. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  99. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  100. groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_infra, tag_clusterid_{{ cluster_id }}'
  101. with_together:
  102. - parsed_outputs.infra_names
  103. - parsed_outputs.infra_ips
  104. - parsed_outputs.infra_floating_ips
  105. - name: Wait for ssh
  106. wait_for:
  107. host: '{{ item }}'
  108. port: 22
  109. with_flattened:
  110. - parsed_outputs.master_floating_ips
  111. - parsed_outputs.node_floating_ips
  112. - parsed_outputs.infra_floating_ips
  113. - name: Wait for user setup
  114. 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'
  115. register: result
  116. until: result.rc == 0
  117. retries: 30
  118. delay: 1
  119. with_flattened:
  120. - parsed_outputs.master_floating_ips
  121. - parsed_outputs.node_floating_ips
  122. - parsed_outputs.infra_floating_ips
  123. - include: update.yml
  124. - include: list.yml