summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/tasks/provision.yml
blob: dccbe334c9fbf753ef90765032ee03427f3308c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
- name: Generate the templates
  include: generate-templates.yml
  when:
  - openshift_openstack_stack_state == 'present'

- name: Handle the Stack (create/delete)
  ignore_errors: False
  register: stack_create
  os_stack:
    name: "{{ openshift_openstack_stack_name }}"
    state: "{{ openshift_openstack_stack_state }}"
    template: "{{ stack_template_path | default(omit) }}"
    wait: yes

- name: Add the new nodes to the inventory
  meta: refresh_inventory

- name: CleanUp
  include: cleanup.yml
  when:
  - openshift_openstack_stack_state == 'present'

# TODO(shadower): create the registry and PV Cinder volumes if specified
# and include the `prepare-and-format-cinder-volume` tasks to set it up