From da10d24fc8ade815b9c9ec515b6051b4923708a0 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Sat, 22 Feb 2025 04:36:20 +0800 Subject: [PATCH] feat(rabbitmq): add custom readiness probe configuration in values file Signed-off-by: zhenyus --- freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml b/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml index d3d9d190..cb224bc0 100644 --- a/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml +++ b/freeleaps/helm-pkg/3rd/rabbitmq/values.alpha.yaml @@ -212,6 +212,15 @@ readinessProbe: periodSeconds: 30 failureThreshold: 3 successThreshold: 1 +customReadinessProbe: + exec: + command: + - 'rabbitmq-diagnostics ping' + failureThreshold: 3 + initialDelaySeconds: 10 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 pdb: create: true minAvailable: "1"