@@ -82,16 +82,20 @@ Sets healthchecks for an application.
8282
8383By default, Workflow only checks that the application starts in their Container. A health
8484check may be added by configuring a health check probe for the application. The health
85- checks are implemented as Kubernetes Container Probes. A 'liveness' and a 'readiness'
86- probe can be configured, and each probe can be of type 'httpGet', 'exec' or 'tcpSocket'
87- depending on the type of probe the Container requires.
85+ checks are implemented as Kubernetes Container Probes. A 'startupProbe' 'livenessProbe'
86+ and a 'readinessProbe' can be configured, and each probe can be of type 'httpGet', 'exec'
87+ or 'tcpSocket' depending on the type of probe the Container requires.
8888
89- A 'liveness' probe is useful for applications running for long periods of time, eventually
89+ A 'startupProbe' indicates whether the application within the container is started.
90+ All other probes are disabled if a startup probe is provided, until it succeeds.
91+ If the startup probe fails, the container is subjected to its restart policy.
92+
93+ A 'livenessProbe' is useful for applications running for long periods of time, eventually
9094transitioning to broken states and cannot recover except by restarting them.
9195
92- Other times, a 'readiness' probe is useful when the Container is only temporarily unable
93- to serve, and will recover on its own. In this case, if a Container fails its 'readiness '
94- probe , the Container will not be shut down, but rather the Container will stop receiving
96+ Other times, a 'readinessProbe' is useful when the Container is only temporarily unable
97+ to serve, and will recover on its own. In this case, if a Container fails its 'readinessProbe '
98+ , the Container will not be shut down, but rather the Container will stop receiving
9599incoming requests.
96100
97101'httpGet' probes are just as it sounds: it performs a HTTP GET operation on the Container.
@@ -110,7 +114,7 @@ Usage: drycc healthchecks:set <health-type> <probe-type> [options] [--] <args>..
110114
111115Arguments:
112116 <health-type>
113- the healthcheck type, such as 'livenessProbe' or 'readinessProbe'.
117+ the healthcheck type, such as 'startupProbe' ' livenessProbe' or 'readinessProbe'.
114118 <probe-type>
115119 the healthcheck probe type, such as 'httpGet', 'exec' or 'tcpSocket'.
116120 <args>
0 commit comments