addNodes.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. - ["vars.{{ deployment_type }}.{{ cluster_id }}.yml", vars.defaults.yml]
  10. vars:
  11. oo_extend_env: True
  12. tasks:
  13. - fail:
  14. msg: Deployment type not supported for aws provider yet
  15. when: deployment_type == 'enterprise'
  16. - include: ../../common/openshift-cluster/tasks/set_node_launch_facts.yml
  17. vars:
  18. type: "compute"
  19. count: "{{ num_nodes }}"
  20. - include: tasks/launch_instances.yml
  21. vars:
  22. instances: "{{ node_names }}"
  23. cluster: "{{ cluster_id }}"
  24. type: "{{ k8s_type }}"
  25. g_sub_host_type: "{{ sub_host_type }}"
  26. - include: ../../common/openshift-cluster/tasks/set_node_launch_facts.yml
  27. vars:
  28. type: "infra"
  29. count: "{{ num_infra }}"
  30. - include: tasks/launch_instances.yml
  31. vars:
  32. instances: "{{ node_names }}"
  33. cluster: "{{ cluster_id }}"
  34. type: "{{ k8s_type }}"
  35. g_sub_host_type: "{{ sub_host_type }}"
  36. - include: scaleup.yml
  37. - include: list.yml