Browse Source

Merge pull request #439 from wshearn/online_use_offical_registry

Use the official redhat registry for online
Wesley Hearn 9 năm trước cách đây
mục cha
commit
22921a4023
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  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