launch.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. gather_facts: no
  5. vars_files:
  6. - vars.yml
  7. vars:
  8. os_libvirt_storage_pool: "{{ libvirt_storage_pool | default('images') }}"
  9. os_libvirt_storage_pool_path: "{{ libvirt_storage_pool_path | default('/var/lib/libvirt/images') }}"
  10. os_libvirt_network: "{{ libvirt_network | default('default') }}"
  11. image_url: "{{ deployment_vars[deployment_type].image.url }}"
  12. image_sha256: "{{ deployment_vars[deployment_type].image.sha256 }}"
  13. image_name: "{{ deployment_vars[deployment_type].image.name }}"
  14. tasks:
  15. - fail: msg="Deployment type not supported for libvirt provider yet"
  16. when: deployment_type == 'online'
  17. - include: tasks/configure_libvirt.yml
  18. - include: ../../common/openshift-cluster/set_master_launch_facts_tasks.yml
  19. - include: tasks/launch_instances.yml
  20. vars:
  21. instances: "{{ master_names }}"
  22. cluster: "{{ cluster_id }}"
  23. type: "{{ k8s_type }}"
  24. - include: ../../common/openshift-cluster/set_node_launch_facts_tasks.yml
  25. - include: tasks/launch_instances.yml
  26. vars:
  27. instances: "{{ node_names }}"
  28. cluster: "{{ cluster_id }}"
  29. type: "{{ k8s_type }}"
  30. - include: update.yml
  31. - include: list.yml