diff options
author | Mangirdas <m.judeikis@gmail.com> | 2017-08-22 09:28:48 +0100 |
---|---|---|
committer | Mangirdas <m.judeikis@gmail.com> | 2017-08-22 09:28:48 +0100 |
commit | 3553a955b619049f0599c123fdcf35cca9d8a27d (patch) | |
tree | 47eab7956bc47447deb14a0218f17cca5187522f | |
parent | b107f677a3563f6db9a1ef17fe10518d321d495c (diff) | |
download | openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.tar.gz openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.tar.bz2 openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.tar.xz openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.zip |
hot fix for env variable resolve
-rw-r--r-- | roles/openshift_hosted/tasks/registry/secure.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_hosted/tasks/registry/secure.yml b/roles/openshift_hosted/tasks/registry/secure.yml index a18e6eea9..b0c19a608 100644 --- a/roles/openshift_hosted/tasks/registry/secure.yml +++ b/roles/openshift_hosted/tasks/registry/secure.yml @@ -1,7 +1,7 @@ --- - name: Configure facts for docker-registry set_fact: - openshift_hosted_registry_routecertificates: "{{ ('routecertificates' in openshift.hosted.registry.keys()) | ternary(openshift.hosted.registry.routecertificates, {}) }}" + openshift_hosted_registry_routecertificates: "{{ ('routecertificates' in openshift.hosted.registry.keys()) | ternary(openshift_hosted_registry_routecertificates, {}) }}" openshift_hosted_registry_routehost: "{{ ('routehost' in openshift.hosted.registry.keys()) | ternary(openshift.hosted.registry.routehost, False) }}" openshift_hosted_registry_routetermination: "{{ ('routetermination' in openshift.hosted.registry.keys()) | ternary(openshift.hosted.registry.routetermination, 'passthrough') }}" |