Browse Source

Merge pull request #2427 from abutcher/BZ1298336

Bug 1298336 - Rerunning the installer fails when not in default namespace
Scott Dodson 8 years ago
parent
commit
f85dd1604e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      roles/openshift_hosted/tasks/registry/secure.yml

+ 4 - 0
roles/openshift_hosted/tasks/registry/secure.yml

@@ -13,6 +13,8 @@
   command: >
     {{ openshift.common.client_binary }} get service docker-registry
     --template='{{ '{{' }} .spec.clusterIP {{ '}}' }}'
+    --config={{ openshift_hosted_kubeconfig }}
+    -n default
   register: docker_registry_service_ip
   changed_when: false
 
@@ -74,6 +76,8 @@
     {{ openshift.common.client_binary }} env dc/docker-registry
     REGISTRY_HTTP_TLS_CERTIFICATE=/etc/secrets/registry.crt
     REGISTRY_HTTP_TLS_KEY=/etc/secrets/registry.key
+    --config={{ openshift_hosted_kubeconfig }}
+    -n default
 
 # These commands are on a single line to preserve patch json.
 - name: Update registry liveness probe from HTTP to HTTPS