summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/openshift-cluster/provision-openstack.yml
diff options
context:
space:
mode:
authorTomas Sedovic <tomas@sedovic.cz>2017-11-07 14:34:03 +1100
committerTomas Sedovic <tomas@sedovic.cz>2017-11-07 14:34:03 +1100
commit85181ea469ed5f541cbac6f73aefc134526aca8d (patch)
tree75fc5b7f1ff9002d67dbc8091070c7c6d334f8b9 /playbooks/openstack/openshift-cluster/provision-openstack.yml
parent6f4d509817f200ec2a273a097f4f048da5997925 (diff)
downloadopenshift-85181ea469ed5f541cbac6f73aefc134526aca8d.tar.gz
openshift-85181ea469ed5f541cbac6f73aefc134526aca8d.tar.bz2
openshift-85181ea469ed5f541cbac6f73aefc134526aca8d.tar.xz
openshift-85181ea469ed5f541cbac6f73aefc134526aca8d.zip
Move the OpenStack playbooks
We move them from `playbooks/provisioning/openstack` to `playbooks/openstack` to mirror `playbooks/aws`.
Diffstat (limited to 'playbooks/openstack/openshift-cluster/provision-openstack.yml')
-rw-r--r--playbooks/openstack/openshift-cluster/provision-openstack.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/playbooks/openstack/openshift-cluster/provision-openstack.yml b/playbooks/openstack/openshift-cluster/provision-openstack.yml
new file mode 100644
index 000000000..bf424676d
--- /dev/null
+++ b/playbooks/openstack/openshift-cluster/provision-openstack.yml
@@ -0,0 +1,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