provision.yml 713 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Generate the templates
  3. include: generate-templates.yml
  4. when:
  5. - openshift_openstack_stack_state == 'present'
  6. - name: Handle the Stack (create/delete)
  7. ignore_errors: False
  8. register: stack_create
  9. os_stack:
  10. name: "{{ openshift_openstack_stack_name }}"
  11. state: "{{ openshift_openstack_stack_state }}"
  12. template: "{{ stack_template_path | default(omit) }}"
  13. wait: yes
  14. - name: Add the new nodes to the inventory
  15. meta: refresh_inventory
  16. - name: CleanUp
  17. include: cleanup.yml
  18. when:
  19. - openshift_openstack_stack_state == 'present'
  20. # TODO(shadower): create the registry and PV Cinder volumes if specified
  21. # and include the `prepare-and-format-cinder-volume` tasks to set it up