blob: bf424676dccc6e34054d33bfaabf8c31f22652ed (
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
26
27
28
29
30
31
32
33
34
35
|
---
- hosts: localhost
gather_facts: True
become: False
vars_files:
- stack_params.yaml
pre_tasks:
- include: pre_tasks.yml
roles:
- role: openstack-stack
- role: openstack-create-cinder-registry
when:
- cinder_hosted_registry_name is defined
- cinder_hosted_registry_size_gb is defined
- role: static_inventory
when: openstack_inventory|default('static') == 'static'
inventory_path: "{{ openstack_inventory_path|default(inventory_dir) }}"
private_ssh_key: "{{ openstack_private_ssh_key|default('') }}"
ssh_config_path: "{{ openstack_ssh_config_path|default('/tmp/ssh.config.openshift.ansible' + '.' + stack_name) }}"
ssh_user: "{{ ansible_user }}"
- name: Refresh Server inventory or exit to apply SSH config
hosts: localhost
connection: local
become: False
gather_facts: False
tasks:
- name: Exit to apply SSH config for a bastion
meta: end_play
when: openstack_use_bastion|default(False)|bool
- name: Refresh Server inventory
meta: refresh_inventory
- include: post-provision-openstack.yml
when: not openstack_use_bastion|default(False)|bool
|