feat(rabbitmq): update custom readiness probe command to use shell execution

Signed-off-by: zhenyus <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-02-22 04:38:26 +08:00
parent da10d24fc8
commit 6ae734248a

View File

@ -215,7 +215,10 @@ readinessProbe:
customReadinessProbe: customReadinessProbe:
exec: exec:
command: command:
- 'rabbitmq-diagnostics ping' - sh
- '-ec'
- >-
rabbitmq-diagnostics ping
failureThreshold: 3 failureThreshold: 3
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 30 periodSeconds: 30