diff options
author | Tomas Sedovic <tomas@sedovic.cz> | 2017-11-02 11:03:39 +0100 |
---|---|---|
committer | Tomas Sedovic <tomas@sedovic.cz> | 2017-11-07 14:35:47 +1100 |
commit | b95170503613bb97c00175324b31ed91f6f41ea1 (patch) | |
tree | 6021e692645f1233379909b3cb3f7b5795685f47 /playbooks/openstack/openshift-cluster/provision.yml | |
parent | ad84935b5021da5ab0d21ffdf630079c1a59083d (diff) | |
download | openshift-b95170503613bb97c00175324b31ed91f6f41ea1.tar.gz openshift-b95170503613bb97c00175324b31ed91f6f41ea1.tar.bz2 openshift-b95170503613bb97c00175324b31ed91f6f41ea1.tar.xz openshift-b95170503613bb97c00175324b31ed91f6f41ea1.zip |
Namespace the OpenStack vars
This makes sure that all the variables used in the `openshift_openstack`
role are prefixed with `openshift_openstack_` as is the convention.
Diffstat (limited to 'playbooks/openstack/openshift-cluster/provision.yml')
-rw-r--r-- | playbooks/openstack/openshift-cluster/provision.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/openstack/openshift-cluster/provision.yml b/playbooks/openstack/openshift-cluster/provision.yml index b1dff1870..fe3057158 100644 --- a/playbooks/openstack/openshift-cluster/provision.yml +++ b/playbooks/openstack/openshift-cluster/provision.yml @@ -42,8 +42,8 @@ name: openshift_openstack tasks_from: populate-dns.yml when: - - external_nsupdate_keys is defined - - external_nsupdate_keys.private is defined or external_nsupdate_keys.public is defined + - openshift_openstack_external_nsupdate_keys is defined + - openshift_openstack_external_nsupdate_keys.private is defined or openshift_openstack_external_nsupdate_keys.public is defined - name: Prepare the Nodes in the cluster for installation hosts: oo_all_hosts |