blob: b774bd6207e89e890f321be994d12f8f35b71915 (
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_tasks: 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_tasks: 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
|