diff options
author | Russell Teague <rteague@redhat.com> | 2017-09-12 15:01:38 -0400 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-09-12 15:13:01 -0400 |
commit | d10f1cdd7baa26f9ce0e5fba1e7599cf07505aa1 (patch) | |
tree | 4ad1d3dcd91dc4364b8cfe48b004c9d1a179d154 /roles/openshift_hosted/defaults | |
parent | a77f2ffdd0b1f37de2877a63511d8682ab4362bc (diff) | |
download | openshift-d10f1cdd7baa26f9ce0e5fba1e7599cf07505aa1.tar.gz openshift-d10f1cdd7baa26f9ce0e5fba1e7599cf07505aa1.tar.bz2 openshift-d10f1cdd7baa26f9ce0e5fba1e7599cf07505aa1.tar.xz openshift-d10f1cdd7baa26f9ce0e5fba1e7599cf07505aa1.zip |
Correct logic for openshift_hosted_*_wait
Diffstat (limited to 'roles/openshift_hosted/defaults')
-rw-r--r-- | roles/openshift_hosted/defaults/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_hosted/defaults/main.yml b/roles/openshift_hosted/defaults/main.yml index 08c1d849e..712a2a591 100644 --- a/roles/openshift_hosted/defaults/main.yml +++ b/roles/openshift_hosted/defaults/main.yml @@ -5,8 +5,8 @@ r_openshift_hosted_router_use_firewalld: "{{ os_firewall_use_firewalld | default r_openshift_hosted_registry_firewall_enabled: "{{ os_firewall_enabled | default(True) }}" r_openshift_hosted_registry_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}" -openshift_hosted_router_wait: "{{ not openshift_master_bootstrap_enabled | default(True) }}" -openshift_hosted_registry_wait: "{{ not openshift_master_bootstrap_enabled | default(True) }}" +openshift_hosted_router_wait: "{{ not (openshift_master_bootstrap_enabled | default(False)) }}" +openshift_hosted_registry_wait: "{{ not (openshift_master_bootstrap_enabled | default(False)) }}" registry_volume_claim: 'registry-claim' |