Revert "Wrap Zookeeper probe script with timeout command (#214)" (#556)

This reverts commit 22f4b9b3bd18a16c477003338464dfe5a689e074.
This commit is contained in:
Lari Hotari 2024-12-02 11:35:22 +02:00 committed by GitHub
parent 07689860f6
commit 0eeb7830a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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'