common: Give probes a little more breathing room

This commit is contained in:
kjeld Schouten-Lebbing
2021-05-23 00:06:09 +02:00
parent 4f3117bcf9
commit a8bbf2e638
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -19,4 +19,4 @@ name: common
sources: sources:
- https://github.com/truecharts/apps/tree/master/library/common - https://github.com/truecharts/apps/tree/master/library/common
type: library type: library
version: 4.1.4 version: 4.1.5
+9 -9
View File
@@ -156,10 +156,10 @@ 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: 0 initialDelaySeconds: 2
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 1 timeoutSeconds: 2
failureThreshold: 3 failureThreshold: 5
# -- Redainess probe configuration # -- Redainess probe configuration
# @default -- See below # @default -- See below
@@ -172,10 +172,10 @@ 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: 0 initialDelaySeconds: 2
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 1 timeoutSeconds: 2
failureThreshold: 3 failureThreshold: 5
# -- Startup probe configuration # -- Startup probe configuration
# @default -- See below # @default -- See below
@@ -188,11 +188,11 @@ 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: 0 initialDelaySeconds: 3
timeoutSeconds: 1 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
failureThreshold: 30 failureThreshold: 60
# -- Configure the services for the chart here. # -- Configure the services for the chart here.
# Additional services can be added by adding a dictionary key similar to the 'main' service. # Additional services can be added by adding a dictionary key similar to the 'main' service.