charts icon indicating copy to clipboard operation
charts copied to clipboard

Missing liveness / readiness / startup probes

Open vasyan1992 opened this issue 1 year ago • 1 comments

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

vasyan1992 avatar Dec 27 '24 15:12 vasyan1992

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

yfhui avatar Mar 25 '25 07:03 yfhui

Would the maintainers be interested in a PR for that?

korridor avatar Jun 26 '25 12:06 korridor