fix(common): increate probe delay and timeout for weaker systems
This commit is contained in:
parent
48fb47e60c
commit
fe5b86dc37
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue