Parcourir la source

Merge pull request #439 from wshearn/online_use_offical_registry

Use the official redhat registry for online
Wesley Hearn il y a 9 ans
Parent
commit
22921a4023
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      roles/openshift_facts/library/openshift_facts.py

+ 1 - 2
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