launch.yml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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_masters={{ num_masters }}
  36. -P num_nodes={{ num_nodes }}
  37. -P num_infra={{ num_infra }}
  38. -P master_image={{ deployment_vars[deployment_type].image }}
  39. -P node_image={{ deployment_vars[deployment_type].image }}
  40. -P infra_image={{ deployment_vars[deployment_type].image }}
  41. -P master_flavor={{ openstack_flavor["master"] }}
  42. -P node_flavor={{ openstack_flavor["node"] }}
  43. -P infra_flavor={{ openstack_flavor["infra"] }}
  44. openshift-ansible-{{ cluster_id }}-stack'
  45. - name: Wait for OpenStack Stack readiness
  46. shell: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack | awk ''$2 == "stack_status" {print $4}'''
  47. register: stack_show_status_result
  48. until: stack_show_status_result.stdout not in ['CREATE_IN_PROGRESS', 'UPDATE_IN_PROGRESS']
  49. retries: 30
  50. delay: 1
  51. failed_when: stack_show_status_result.stdout not in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']
  52. - name: Read OpenStack Stack outputs
  53. command: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack'
  54. register: stack_show_result
  55. - set_fact:
  56. parsed_outputs: "{{ stack_show_result | oo_parse_heat_stack_outputs }}"
  57. - name: Add new master instances groups and variables
  58. add_host:
  59. hostname: '{{ item[0] }}'
  60. ansible_ssh_host: '{{ item[2] }}'
  61. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  62. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  63. groups: 'tag_env_{{ cluster_id }}, tag_host-type_master, tag_env-host-type_{{ cluster_id }}-openshift-master, tag_sub-host-type_default'
  64. with_together:
  65. - parsed_outputs.master_names
  66. - parsed_outputs.master_ips
  67. - parsed_outputs.master_floating_ips
  68. - name: Add new node instances groups and variables
  69. add_host:
  70. hostname: '{{ item[0] }}'
  71. ansible_ssh_host: '{{ item[2] }}'
  72. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  73. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  74. groups: 'tag_env_{{ cluster_id }}, tag_host-type_node, tag_env-host-type_{{ cluster_id }}-openshift-node, tag_sub-host-type_compute'
  75. with_together:
  76. - parsed_outputs.node_names
  77. - parsed_outputs.node_ips
  78. - parsed_outputs.node_floating_ips
  79. - name: Add new infra instances groups and variables
  80. add_host:
  81. hostname: '{{ item[0] }}'
  82. ansible_ssh_host: '{{ item[2] }}'
  83. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  84. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  85. groups: 'tag_env_{{ cluster_id }}, tag_host-type_node, tag_env-host-type_{{ cluster_id }}-openshift-node, tag_sub-host-type_infra'
  86. with_together:
  87. - parsed_outputs.infra_names
  88. - parsed_outputs.infra_ips
  89. - parsed_outputs.infra_floating_ips
  90. - name: Wait for ssh
  91. wait_for:
  92. host: '{{ item }}'
  93. port: 22
  94. with_flattened:
  95. - parsed_outputs.master_floating_ips
  96. - parsed_outputs.node_floating_ips
  97. - parsed_outputs.infra_floating_ips
  98. - name: Wait for user setup
  99. 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'
  100. register: result
  101. until: result.rc == 0
  102. retries: 30
  103. delay: 1
  104. with_flattened:
  105. - parsed_outputs.master_floating_ips
  106. - parsed_outputs.node_floating_ips
  107. - parsed_outputs.infra_floating_ips
  108. - include: update.yml
  109. - include: list.yml