From 152ce3479a5ba65600ecc2875fb924f0f225b9ff Mon Sep 17 00:00:00 2001 From: 0x6b-dev Date: Mon, 10 Jul 2023 00:15:05 +1000 Subject: [PATCH] add in the enabled/disabled flags for probes --- charts/stable/romm/values.yaml | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/charts/stable/romm/values.yaml b/charts/stable/romm/values.yaml index 2418ade..d512d7f 100644 --- a/charts/stable/romm/values.yaml +++ b/charts/stable/romm/values.yaml @@ -94,4 +94,34 @@ externalDatabase: password: "" ## @param externalDatabase.database Name of the existing database ## - database: dmarc \ No newline at end of file + database: dmarc + +livenessProbe: + enabled: true + tcpSocket: + port: http + initialDelaySeconds: 200 + timeoutSeconds: 1 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 10 + +readinessProbe: + enabled: true + tcpSocket: + port: http + initialDelaySeconds: 5 + timeoutSeconds: 1 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 3 + +startupProbe: + enabled: false + tcpSocket: + port: http + initialDelaySeconds: 60 + timeoutSeconds: 1 + periodSeconds: 10 + successThreshold: 1 + failureThreshold: 10 \ No newline at end of file