From 0eeb7830a9b0f53974ab2dc778e6c762269437a1 Mon Sep 17 00:00:00 2001 From: Lari Hotari Date: Mon, 2 Dec 2024 11:35:22 +0200 Subject: [PATCH] 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'