This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new ab8cd8c  disable zookeeper readiness probe (#471)
ab8cd8c is described below

commit ab8cd8c600672d10ae80c395fee6eb90a7d320a7
Author: David Grove <[email protected]>
AuthorDate: Fri May 31 10:03:10 2019 -0400

    disable zookeeper readiness probe (#471)
    
    Comment out zookeeper readiness probe until we have guidance
    from upstream project about whether they will restore `nc`
    to their image or if we will need to develop an alternative
    readiness probe.
    
    See #469.
---
 helm/openwhisk/templates/zookeeper-pod.yaml | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/helm/openwhisk/templates/zookeeper-pod.yaml 
b/helm/openwhisk/templates/zookeeper-pod.yaml
index d59b6df..4c84558 100644
--- a/helm/openwhisk/templates/zookeeper-pod.yaml
+++ b/helm/openwhisk/templates/zookeeper-pod.yaml
@@ -62,14 +62,15 @@ spec:
             port: {{ .Values.zookeeper.port }}
           initialDelaySeconds: 5
           periodSeconds: 10
-        readinessProbe:
-          exec:
-            command:
-            - /bin/bash
-            - -c
-            - "echo ruok | nc -w 1 localhost:{{ .Values.zookeeper.port }} | 
grep imok"
-          initialDelaySeconds: 5
-          periodSeconds: 10
+        # Disabled: See issue 
https://github.com/apache/incubator-openwhisk-deploy-kube/issues/469
+        # readinessProbe:
+        #   exec:
+        #     command:
+        #     - /bin/bash
+        #     - -c
+        #     - "echo ruok | nc -w 1 localhost:{{ .Values.zookeeper.port }} | 
grep imok"
+        #   initialDelaySeconds: 5
+        #   periodSeconds: 10
         volumeMounts:
         - mountPath: /conf
           name: zk-config

Reply via email to