소스 검색

Merge pull request #7125 from nekop/bz1544645

Automatic merge from submit-queue.

Use curl --noproxy option for internal apiserver access

Fix for BZ1544645, Service catalog playbook missing --noproxy '*' when checking api server:

https://bugzilla.redhat.com/1544645
OpenShift Merge Robot 7 년 전
부모
커밋
ca5e166fe8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      roles/openshift_service_catalog/tasks/start_api_server.yml

+ 1 - 1
roles/openshift_service_catalog/tasks/start_api_server.yml

@@ -10,7 +10,7 @@
 # wait to see that the apiserver is available
 - name: wait for api server to be ready
   command: >
-    curl -k https://apiserver.kube-service-catalog.svc/healthz
+    curl --noproxy '*' -k https://apiserver.kube-service-catalog.svc/healthz
   args:
     # Disables the following warning:
     # Consider using get_url or uri module rather than running curl