Skip to content

Commit

Permalink
[Control Center] Probe timeout values (#4003)
Browse files Browse the repository at this point in the history
* Add descriptions for new probe timeout values

* Change default probe initial delays to 0

* Add startup probe properties
  • Loading branch information
MatthewVaadin authored Dec 19, 2024
1 parent af706a2 commit 167188a
Showing 1 changed file with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,30 @@ pass:[<!-- vale Vale.Spelling = YES -->]

| app.pass:[<wbr>]resources | No | | The resource to allocate for the Control Center application containers.

| livenessProbe.pass:[<wbr>]httpGet.pass:[<wbr>]path | No | /actuator/pass:[<wbr>]health/pass:[<wbr>]liveness | The path to use for the `liveness` probe for the Control Center application.
| startupProbe.pass:[<wbr>]httpGet.pass:[<wbr>]path | No | /actuator/pass:[<wbr>]health | The path to use for the startup probe for the Control Center application.

| livenessProbe.pass:[<wbr>]httpGet.pass:[<wbr>]port | No | `http` | The port to use for the `liveness` probe.
| startupProbe.pass:[<wbr>]httpGet.pass:[<wbr>]port | No | `http` | The port to use for the startup probe.

| startupProbe.pass:[<wbr>]initialDelaySeconds | No | 0 | The initial delay in seconds for the startup probe.

| startupProbe.pass:[<wbr>]failureThreshold | No | 30 | The failure threshold for the startup probe. If the probe fails this many times, the container is restarted.

| livenessProbe.pass:[<wbr>]httpGet.pass:[<wbr>]path | No | /actuator/pass:[<wbr>]health/pass:[<wbr>]liveness | The path to use for the liveness probe for the Control Center application.

| livenessProbe.pass:[<wbr>]httpGet.pass:[<wbr>]port | No | `http` | The port to use for the liveness probe.

| livenessProbe.pass:[<wbr>]initialDelaySeconds | No | 0 | The initial delay in seconds for the liveness probe.

| livenessProbe.pass:[<wbr>]failureThreshold | No | 3 | The failure threshold for the liveness probe. If the probe fails this many times, the container is restarted.

| readinessProbe.pass:[<wbr>]httpGet.pass:[<wbr>]path | No | /actuator/pass:[<wbr>]health/pass:[<wbr>]readiness | The path to use for the readiness probe for the Control Center application.

| readinessProbe.pass:[<wbr>]httpGet.pass:[<wbr>]port | No | `http` | The port to use for the readiness probe.

| readinessProbe.pass:[<wbr>]initialDelaySeconds | No | 0 | The initial delay in seconds for the readiness probe.

| readinessProbe.pass:[<wbr>]failureThreshold | No | 3 | The failure threshold for the readiness probe.

| app.pass:[<wbr>]volumes | No | | The volume definitions for the Control Center application.

| app.pass:[<wbr>]volumeMounts | No | | The volume mounts for the Control Center application.
Expand Down

0 comments on commit 167188a

Please sign in to comment.