From 4abb7381bdf439dfc1ab371be231f856620d7e19 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann Date: Thu, 28 Sep 2017 14:12:20 +0200 Subject: Allow cluster IP for docker-registry service to be set For historical reasons a small set of programs in our environments rely on the cluster-internal Docker registry having the IP address "172.30.1.1". So far we always had to patch in that address manually. Adding a variable on the "openshift_hosted" role allows the IP address to be set correctly when a cluster is installed. --- roles/openshift_hosted/tasks/registry.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'roles/openshift_hosted/tasks/registry.yml') diff --git a/roles/openshift_hosted/tasks/registry.yml b/roles/openshift_hosted/tasks/registry.yml index f1aa9c5a8..eaaac9da2 100644 --- a/roles/openshift_hosted/tasks/registry.yml +++ b/roles/openshift_hosted/tasks/registry.yml @@ -89,6 +89,7 @@ docker-registry: default session_affinity: ClientIP service_type: ClusterIP + clusterip: '{{ openshift_hosted_registry_clusterip | default(omit) }}' - include: secure.yml static: no -- cgit v1.2.1