diff --git a/helm/flowforge/README.md b/helm/flowforge/README.md index 073b42d2..cc03fa1d 100644 --- a/helm/flowforge/README.md +++ b/helm/flowforge/README.md @@ -218,11 +218,11 @@ Note: External secret must contain following keys: Following values can be used to configure the liveness, readiness and startup probes for all pods: -- `initialDelaySeconds` (default `10`) - number of seconds after the container has started before liveness or readiness probes are initiated -- `periodSeconds` (default `10`) - how often (in seconds) to perform the probe -- `timeoutSeconds` (default `5`) - number of seconds after which the probe times out -- `successThreshold` (default `1`) - minimum consecutive successes for the probe to be considered successful after having failed -- `failureThreshold` (default `3`) - minimum consecutive failures for the probe to be considered failed after having succeeded +- `initialDelaySeconds` - number of seconds after the container has started before liveness or readiness probes are initiated +- `periodSeconds` - how often (in seconds) to perform the probe +- `timeoutSeconds` - number of seconds after which the probe times out +- `successThreshold` - minimum consecutive successes for the probe to be considered successful after having failed +- `failureThreshold` - minimum consecutive failures for the probe to be considered failed after having succeeded Example for readiness probe: ```yaml diff --git a/helm/flowforge/values.yaml b/helm/flowforge/values.yaml index 86fdbaa7..ad90d7f7 100644 --- a/helm/flowforge/values.yaml +++ b/helm/flowforge/values.yaml @@ -29,13 +29,13 @@ forge: livenessProbe: initialDelaySeconds: 10 periodSeconds: 10 - timeoutSeconds: 5 + timeoutSeconds: 15 successThreshold: 1 - failureThreshold: 3 + failureThreshold: 5 readinessProbe: initialDelaySeconds: 10 periodSeconds: 10 - timeoutSeconds: 5 + timeoutSeconds: 15 successThreshold: 1 failureThreshold: 3 containerSecurityContext: