From 6bf61d7e91efe21d36b099364c51ecc96602c102 Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Tue, 23 Oct 2018 17:16:47 +0100 Subject: [PATCH] Adjust pebble probes Signed-off-by: James Munnelly --- contrib/charts/pebble/templates/deployment.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/contrib/charts/pebble/templates/deployment.yaml b/contrib/charts/pebble/templates/deployment.yaml index 54572ed33..28d749d12 100644 --- a/contrib/charts/pebble/templates/deployment.yaml +++ b/contrib/charts/pebble/templates/deployment.yaml @@ -22,11 +22,17 @@ spec: readinessProbe: tcpSocket: port: 14000 - initialDelaySeconds: 5 + initialDelaySeconds: 1 + periodSeconds: 1 + failureThreshold: 10 + successThreshold: 1 livenessProbe: tcpSocket: port: 14000 - initialDelaySeconds: 5 + initialDelaySeconds: 1 + periodSeconds: 1 + failureThreshold: 10 + successThreshold: 1 resources: {{ toYaml .Values.resources | indent 12 }} {{- if .Values.nodeSelector }}