summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted
diff options
context:
space:
mode:
authorMangirdas <m.judeikis@gmail.com>2017-08-22 09:28:48 +0100
committerMangirdas <m.judeikis@gmail.com>2017-08-22 09:28:48 +0100
commit3553a955b619049f0599c123fdcf35cca9d8a27d (patch)
tree47eab7956bc47447deb14a0218f17cca5187522f /roles/openshift_hosted
parentb107f677a3563f6db9a1ef17fe10518d321d495c (diff)
downloadopenshift-3553a955b619049f0599c123fdcf35cca9d8a27d.tar.gz
openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.tar.bz2
openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.tar.xz
openshift-3553a955b619049f0599c123fdcf35cca9d8a27d.zip
hot fix for env variable resolve
Diffstat (limited to 'roles/openshift_hosted')
-rw-r--r--roles/openshift_hosted/tasks/registry/secure.yml2
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') }}"