From fe5b86dc37d0cca2d802ea5801ef43e742558d0a Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Sun, 21 Nov 2021 13:34:04 +0100 Subject: [PATCH] fix(common): increate probe delay and timeout for weaker systems --- charts/library/common/Chart.yaml | 2 +- charts/library/common/values.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/library/common/Chart.yaml b/charts/library/common/Chart.yaml index a9986a10b70..9956274aee3 100644 --- a/charts/library/common/Chart.yaml +++ b/charts/library/common/Chart.yaml @@ -15,4 +15,4 @@ maintainers: name: common sources: null type: library -version: 8.6.4 +version: 8.6.5 diff --git a/charts/library/common/values.yaml b/charts/library/common/values.yaml index a7b6e4183c6..6dba3243684 100644 --- a/charts/library/common/values.yaml +++ b/charts/library/common/values.yaml @@ -322,9 +322,9 @@ probes: # If you selected `custom: true`, this field holds the definition of the livenessProbe. # @default -- See below spec: - initialDelaySeconds: 2 + initialDelaySeconds: 10 periodSeconds: 10 - timeoutSeconds: 2 + timeoutSeconds: 5 failureThreshold: 5 # -- Redainess probe configuration @@ -344,9 +344,9 @@ probes: # If you selected `custom: true`, this field holds the definition of the readinessProbe. # @default -- See below spec: - initialDelaySeconds: 2 + initialDelaySeconds: 10 periodSeconds: 10 - timeoutSeconds: 2 + timeoutSeconds: 5 failureThreshold: 5 # -- Startup probe configuration @@ -366,7 +366,7 @@ probes: # If you selected `custom: true`, this field holds the definition of the startupProbe. # @default -- See below spec: - initialDelaySeconds: 3 + initialDelaySeconds: 10 timeoutSeconds: 2 ## This means it has a maximum of 5*30=150 seconds to start up before it fails periodSeconds: 5