File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
content/en/docs/concepts/workloads/pods Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -282,6 +282,17 @@ on the Kubernetes API server for each static Pod.
282
282
This means that the Pods running on a node are visible on the API server,
283
283
but cannot be controlled from there.
284
284
285
+ ## Container probes
286
+
287
+ A _ probe_ is a diagnostic performed periodically by the kubelet on a container. To perform a diagnostic, the kubelet can invoke different actions:
288
+
289
+ - ` ExecAction ` (performed with the help of the container runtime)
290
+ - ` TCPSocketAction ` (checked directly by the kubelet)
291
+ - ` HTTPGetAction ` (checked directly by the kubelet)
292
+
293
+ You can read more about [ probes] ( /docs/concepts/workloads/pods/pod-lifecycle/#container-probes )
294
+ in the Pod Lifecycle documentation.
295
+
285
296
## {{% heading "whatsnext" %}}
286
297
287
298
* Learn about the [ lifecycle of a Pod] ( /docs/concepts/workloads/pods/pod-lifecycle/ ) .
You can’t perform that action at this time.
0 commit comments