add in the enabled/disabled flags for probes
All checks were successful
checks / check and test (push) Successful in 28s

This commit is contained in:
0x6b-dev 2023-07-10 00:15:05 +10:00
parent 67d26d4c59
commit 152ce3479a

View File

@ -95,3 +95,33 @@ externalDatabase:
## @param externalDatabase.database Name of the existing database ## @param externalDatabase.database Name of the existing database
## ##
database: dmarc database: dmarc
livenessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 200
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
readinessProbe:
enabled: true
tcpSocket:
port: http
initialDelaySeconds: 5
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
startupProbe:
enabled: false
tcpSocket:
port: http
initialDelaySeconds: 60
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 10