Javatar81 / devjoy

2 stars 0 forks source link

Adjust readiness and liveness probes #77

Open Javatar81 opened 6 months ago

Javatar81 commented 6 months ago

Use readiness and liveness as proposed here: https://github.com/rhpds/gitea-operator/

Let's try this for readiness:

 failureThreshold: 3
 initialDelaySeconds: 5
 periodSeconds: 10
 successThreshold: 1
 timeoutSeconds: 1

and for liveness:

failureThreshold: 3
initialDelaySeconds: 120
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10