launch.yml 5.6 KB

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