From ba04b3bacbaa07938c6ef64afb1fb8b2bbccf018 Mon Sep 17 00:00:00 2001 From: Aliaksei Date: Sun, 20 Oct 2024 20:51:02 -0400 Subject: [PATCH] Mention that tcpSocket is deprecated --- .../en/docs/concepts/containers/container-lifecycle-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/containers/container-lifecycle-hooks.md b/content/en/docs/concepts/containers/container-lifecycle-hooks.md index 683e9fb315..f7b7fa16a4 100644 --- a/content/en/docs/concepts/containers/container-lifecycle-hooks.md +++ b/content/en/docs/concepts/containers/container-lifecycle-hooks.md @@ -62,7 +62,7 @@ Resources consumed by the command are counted against the Container. When a Container lifecycle management hook is called, the Kubernetes management system executes the handler according to the hook action, -`httpGet` and `sleep` are executed by the kubelet process, and `exec` is executed in the container. +`httpGet`, `tcpSocket` (deprecated[https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#lifecyclehandler-v1-core]) and `sleep` are executed by the kubelet process, and `exec` is executed in the container. The `PostStart` hook handler call is initiated when a container is created, meaning the container ENTRYPOINT and the `PostStart` hook are triggered simultaneously.