From e5b03c9ec0cb5f137e2f21767f14b243c5841003 Mon Sep 17 00:00:00 2001 From: jmarchel Date: Wed, 29 Nov 2023 11:07:48 +0100 Subject: [PATCH] Add startupProbe to deployment.yaml Change-Id: Id55e56857531becaf13e10de4d6cd26db4b461bb --- charts/nebulous-activemq/templates/deployment.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/charts/nebulous-activemq/templates/deployment.yaml b/charts/nebulous-activemq/templates/deployment.yaml index 227e176..eacfef3 100644 --- a/charts/nebulous-activemq/templates/deployment.yaml +++ b/charts/nebulous-activemq/templates/deployment.yaml @@ -45,9 +45,17 @@ spec: livenessProbe: tcpSocket: port: activemq + periodSeconds: 10 readinessProbe: tcpSocket: port: activemq + periodSeconds: 10 + startupProbe: + tcpSocket: + port: activemq + initialDelaySeconds: 10 + periodSeconds: 10 + failureThreshold: 6 resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}