Browse Source

Merge pull request #7262 from vrutkovs/service-catalog-no-proxy

start_api_server: service catalog healthcheck doesn't require proxy
Scott Dodson 7 years ago
parent
commit
30a450eb13
1 changed files with 2 additions and 0 deletions
  1. 2 0
      roles/openshift_service_catalog/tasks/start_api_server.yml

+ 2 - 0
roles/openshift_service_catalog/tasks/start_api_server.yml

@@ -13,6 +13,8 @@
     url: https://apiserver.kube-service-catalog.svc/healthz
     validate_certs: no
     return_content: yes
+  environment:
+    no_proxy: '*'
   register: api_health
   until: "'ok' in api_health.content"
   retries: 60