Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Control Center] Probe timeout values #4003

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading