Skip to content

Commit

Permalink
fix(charts/authentik): increase initial delay of worker startup probe (
Browse files Browse the repository at this point in the history
…#266)

* Adding probes to worker deployment

* Removing trailing whitespace

* Increase delay of worker startupProbe

* Update README.md
  • Loading branch information
channel-42 committed May 2, 2024
1 parent 6e075ed commit 159944c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/authentik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ The secret `authentik-postgres-credentials` must have `username` and `password`
| worker.startupProbe.exec.command[0] | string | `"ak"` | |
| worker.startupProbe.exec.command[1] | string | `"healthcheck"` | |
| worker.startupProbe.failureThreshold | int | `60` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
| worker.startupProbe.initialDelaySeconds | int | `5` | Number of seconds after the container has started before [probe] is initiated |
| worker.startupProbe.initialDelaySeconds | int | `30` | Number of seconds after the container has started before [probe] is initiated |
| worker.startupProbe.periodSeconds | int | `10` | How often (in seconds) to perform the [probe] |
| worker.startupProbe.successThreshold | int | `1` | Minimum consecutive successes for the [probe] to be considered successful after having failed |
| worker.startupProbe.timeoutSeconds | int | `1` | Number of seconds after which the [probe] times out |
Expand Down
2 changes: 1 addition & 1 deletion charts/authentik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ worker:
# -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded
failureThreshold: 60
# -- Number of seconds after the container has started before [probe] is initiated
initialDelaySeconds: 5
initialDelaySeconds: 30
# -- How often (in seconds) to perform the [probe]
periodSeconds: 10
# -- Minimum consecutive successes for the [probe] to be considered successful after having failed
Expand Down

0 comments on commit 159944c

Please sign in to comment.