launch.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. vars:
  10. os_libvirt_storage_pool: "{{ libvirt_storage_pool | default('images') }}"
  11. os_libvirt_storage_pool_path: "{{ libvirt_storage_pool_path | default('/var/lib/libvirt/images') }}"
  12. os_libvirt_network: "{{ libvirt_network | default('default') }}"
  13. image_url: "{{ deployment_vars[deployment_type].image.url }}"
  14. image_sha256: "{{ deployment_vars[deployment_type].image.sha256 }}"
  15. image_name: "{{ deployment_vars[deployment_type].image.name }}"
  16. tasks:
  17. - fail: msg="Deployment type not supported for libvirt provider yet"
  18. when: deployment_type == 'online'
  19. - include: tasks/configure_libvirt.yml
  20. - include: ../../common/openshift-cluster/tasks/set_etcd_launch_facts.yml
  21. - include: tasks/launch_instances.yml
  22. vars:
  23. instances: "{{ etcd_names }}"
  24. cluster: "{{ cluster_id }}"
  25. type: "{{ k8s_type }}"
  26. g_sub_host_type: "default"
  27. - include: ../../common/openshift-cluster/tasks/set_master_launch_facts.yml
  28. - include: tasks/launch_instances.yml
  29. vars:
  30. instances: "{{ master_names }}"
  31. cluster: "{{ cluster_id }}"
  32. type: "{{ k8s_type }}"
  33. g_sub_host_type: "default"
  34. - include: ../../common/openshift-cluster/tasks/set_node_launch_facts.yml
  35. vars:
  36. type: "compute"
  37. count: "{{ num_nodes }}"
  38. - include: tasks/launch_instances.yml
  39. vars:
  40. instances: "{{ node_names }}"
  41. cluster: "{{ cluster_id }}"
  42. type: "{{ k8s_type }}"
  43. g_sub_host_type: "{{ sub_host_type }}"
  44. - include: ../../common/openshift-cluster/tasks/set_node_launch_facts.yml
  45. vars:
  46. type: "infra"
  47. count: "{{ num_infra }}"
  48. - include: tasks/launch_instances.yml
  49. vars:
  50. instances: "{{ node_names }}"
  51. cluster: "{{ cluster_id }}"
  52. type: "{{ k8s_type }}"
  53. g_sub_host_type: "{{ sub_host_type }}"
  54. - include: update.yml
  55. - include: list.yml