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

lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git


The following commit(s) were added to refs/heads/master by this push:
     new 0eeb783  Revert "Wrap Zookeeper probe script with timeout command 
(#214)" (#556)
0eeb783 is described below

commit 0eeb7830a9b0f53974ab2dc778e6c762269437a1
Author: Lari Hotari <[email protected]>
AuthorDate: Mon Dec 2 11:35:22 2024 +0200

    Revert "Wrap Zookeeper probe script with timeout command (#214)" (#556)
    
    This reverts commit 22f4b9b3bd18a16c477003338464dfe5a689e074.
---
 charts/pulsar/templates/zookeeper-statefulset.yaml | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/charts/pulsar/templates/zookeeper-statefulset.yaml 
b/charts/pulsar/templates/zookeeper-statefulset.yaml
index 00e5faa..cd84405 100755
--- a/charts/pulsar/templates/zookeeper-statefulset.yaml
+++ b/charts/pulsar/templates/zookeeper-statefulset.yaml
@@ -180,8 +180,6 @@ spec:
         readinessProbe:
           exec:
             command:
-            - timeout
-            - "{{ .Values.zookeeper.probe.readiness.timeoutSeconds }}"
             - bash
             - -c
             - '{ echo ruok; sleep 1; } | {{ $zkConnectCommand }} | grep imok'
@@ -194,8 +192,6 @@ spec:
         livenessProbe:
           exec:
             command:
-            - timeout
-            - "{{ .Values.zookeeper.probe.liveness.timeoutSeconds }}"
             - bash
             - -c
             - '{ echo ruok; sleep 1; } | {{ $zkConnectCommand }} | grep imok'
@@ -208,8 +204,6 @@ spec:
         startupProbe:
           exec:
             command:
-            - timeout
-            - "{{ .Values.zookeeper.probe.startup.timeoutSeconds }}"
             - bash
             - -c
             - '{ echo ruok; sleep 1; } | {{ $zkConnectCommand }} | grep imok'

Reply via email to