summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorWesley Hearn <wesley.s.hearn@gmail.com>2015-08-10 14:46:53 -0400
committerWesley Hearn <wesley.s.hearn@gmail.com>2015-08-10 14:46:53 -0400
commit22921a40239aa366e44b61e5341ccaffbe5c8b3b (patch)
tree5f956196a9ec35d930b6fac341b563aee960b83d /roles
parent550c364753e249fc87246b00df41c365d1d52d3e (diff)
parentad908f68a94fd5a5b45d5467383abcbc6417540c (diff)
downloadopenshift-22921a40239aa366e44b61e5341ccaffbe5c8b3b.tar.gz
openshift-22921a40239aa366e44b61e5341ccaffbe5c8b3b.tar.bz2
openshift-22921a40239aa366e44b61e5341ccaffbe5c8b3b.tar.xz
openshift-22921a40239aa366e44b61e5341ccaffbe5c8b3b.zip
Merge pull request #439 from wshearn/online_use_offical_registry
Use the official redhat registry for online
Diffstat (limited to 'roles')
-rwxr-xr-xroles/openshift_facts/library/openshift_facts.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py
index d733639c3..4e0989c5f 100755
--- a/roles/openshift_facts/library/openshift_facts.py
+++ b/roles/openshift_facts/library/openshift_facts.py
@@ -300,8 +300,7 @@ def set_registry_url_if_unset(facts):
if deployment_type == 'enterprise':
registry_url = "openshift3/ose-${component}:${version}"
elif deployment_type == 'online':
- registry_url = ("docker-registry.ops.rhcloud.com/"
- "openshift3/ose-${component}:${version}")
+ registry_url = ("openshift3/ose-${component}:${version}")
facts[role]['registry_url'] = registry_url
return facts