summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/tasks/registry/registry.yml
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-02-24 16:46:06 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-02-28 09:29:21 -0500
commite0090381732d43de74715b9d41480b3c43391783 (patch)
tree322be180faf601d1cbc5f9243e05d852920ddfe5 /roles/openshift_hosted/tasks/registry/registry.yml
parent1629eb0af60e14f70f942b66a6c4c37e875dabe1 (diff)
downloadopenshift-e0090381732d43de74715b9d41480b3c43391783.tar.gz
openshift-e0090381732d43de74715b9d41480b3c43391783.tar.bz2
openshift-e0090381732d43de74715b9d41480b3c43391783.tar.xz
openshift-e0090381732d43de74715b9d41480b3c43391783.zip
Adding support for a route with certs and reencrypt.
Diffstat (limited to 'roles/openshift_hosted/tasks/registry/registry.yml')
-rw-r--r--roles/openshift_hosted/tasks/registry/registry.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/openshift_hosted/tasks/registry/registry.yml b/roles/openshift_hosted/tasks/registry/registry.yml
index 2369c4e2e..f9441dd57 100644
--- a/roles/openshift_hosted/tasks/registry/registry.yml
+++ b/roles/openshift_hosted/tasks/registry/registry.yml
@@ -40,6 +40,9 @@
openshift_hosted_registry_images: "{{ openshift.hosted.registry.registryurl | default('openshift3/ose-${component}:${version}')}}"
openshift_hosted_registry_volumes: []
openshift_hosted_registry_env_vars: {}
+ openshift_hosted_registry_route_certificates: "{{ openshift.hosted.registry.route.certificates | default(false) }}"
+ openshift_hosted_registry_route_host: "{{ openshift.hosted.registry.route.host | default(false) }}"
+ openshift_hosted_registry_route_termination: "{{ openshift.hosted.registry.route.termination | default('passthrough') }}"
openshift_hosted_registry_edits:
# These edits are being specified only to prevent 'changed' on rerun
- key: spec.strategy.rollingParams
@@ -89,6 +92,7 @@
- name: Create OpenShift registry
oc_adm_registry:
+#debug: True
name: "{{ openshift_hosted_registry_name }}"
namespace: "{{ openshift_hosted_registry_namespace }}"
selector: "{{ openshift_hosted_registry_selector }}"