launch.yml 4.9 KB

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