blob: 6ec944d56c6e4c22f23987fbc3d7bc71bca62f72 (
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
|
---
- hosts: localhost
gather_facts: True
become: False
vars_files:
- stack_params.yaml
pre_tasks:
- include: pre_tasks.yml
roles:
- role: openstack-stack
- 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/id_rsa') }}"
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
|