launch.yml 803 B

12345678910111213141516171819202122232425262728293031
  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 in ['online', 'enterprise']
  12. - include: tasks/configure_openstack.yml
  13. - include: ../../common/openshift-cluster/set_master_launch_facts_tasks.yml
  14. - include: tasks/launch_instances.yml
  15. vars:
  16. instances: "{{ master_names }}"
  17. cluster: "{{ cluster_id }}"
  18. type: "{{ k8s_type }}"
  19. - include: ../../common/openshift-cluster/set_node_launch_facts_tasks.yml
  20. - include: tasks/launch_instances.yml
  21. vars:
  22. instances: "{{ node_names }}"
  23. cluster: "{{ cluster_id }}"
  24. type: "{{ k8s_type }}"
  25. - include: update.yml
  26. - include: list.yml