charts
charts copied to clipboard
Missing liveness / readiness / startup probes
In helm chart probes are missing and at least for web-deployment it is needed to perform rollout restart without service interruption would be nice to be able to configure something like
livenessProbe:
failureThreshold: 3
httpGet:
path: /
port: 3000
scheme: HTTP
initialDelaySeconds: 60
periodSeconds: 20
successThreshold: 1
timeoutSeconds: 1
readinessProbe:
failureThreshold: 1
httpGet:
path: /
port: 3000
scheme: HTTP
initialDelaySeconds: 5
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 20
httpGet:
path: /
port: 3000
scheme: HTTP
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 1
agree. for fresh installation, in my case the readiness probe will be failed for root url /. It will be great if I could config to /installation/onboarding then update to root url / after register the first user
Would the maintainers be interested in a PR for that?