Skip to content

Commit

Permalink
fix: Update liveness and readiness probe timeout values for broker pod (
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb authored Feb 14, 2024
2 parents 9ba0190 + 423d021 commit 61e0573
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions helm/flowforge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions helm/flowforge/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 61e0573

Please sign in to comment.