fix(common): increate probe delay and timeout for weaker systems

This commit is contained in:
kjeld Schouten-Lebbing 2021-11-21 13:34:04 +01:00
parent 48fb47e60c
commit fe5b86dc37
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 6 additions and 6 deletions

View File

@ -15,4 +15,4 @@ maintainers:
name: common name: common
sources: null sources: null
type: library type: library
version: 8.6.4 version: 8.6.5

View File

@ -322,9 +322,9 @@ probes:
# If you selected `custom: true`, this field holds the definition of the livenessProbe. # If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below # @default -- See below
spec: spec:
initialDelaySeconds: 2 initialDelaySeconds: 10
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 2 timeoutSeconds: 5
failureThreshold: 5 failureThreshold: 5
# -- Redainess probe configuration # -- Redainess probe configuration
@ -344,9 +344,9 @@ probes:
# If you selected `custom: true`, this field holds the definition of the readinessProbe. # If you selected `custom: true`, this field holds the definition of the readinessProbe.
# @default -- See below # @default -- See below
spec: spec:
initialDelaySeconds: 2 initialDelaySeconds: 10
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 2 timeoutSeconds: 5
failureThreshold: 5 failureThreshold: 5
# -- Startup probe configuration # -- Startup probe configuration
@ -366,7 +366,7 @@ probes:
# If you selected `custom: true`, this field holds the definition of the startupProbe. # If you selected `custom: true`, this field holds the definition of the startupProbe.
# @default -- See below # @default -- See below
spec: spec:
initialDelaySeconds: 3 initialDelaySeconds: 10
timeoutSeconds: 2 timeoutSeconds: 2
## This means it has a maximum of 5*30=150 seconds to start up before it fails ## This means it has a maximum of 5*30=150 seconds to start up before it fails
periodSeconds: 5 periodSeconds: 5