diff options
| author | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-08-10 14:46:53 -0400 | 
|---|---|---|
| committer | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-08-10 14:46:53 -0400 | 
| commit | 22921a40239aa366e44b61e5341ccaffbe5c8b3b (patch) | |
| tree | 5f956196a9ec35d930b6fac341b563aee960b83d | |
| parent | 550c364753e249fc87246b00df41c365d1d52d3e (diff) | |
| parent | ad908f68a94fd5a5b45d5467383abcbc6417540c (diff) | |
| download | openshift-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
| -rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 3 | 
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 | 
