From e436cf704f816bf6e12423bc2b009eed39f524ac Mon Sep 17 00:00:00 2001 From: Evgeny Shmarnev Date: Thu, 10 Dec 2020 16:27:17 +0100 Subject: [PATCH] State that no more than one handler is allowed per lifecycle event --- .../configure-pod-container/attach-handler-lifecycle-event.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md b/content/en/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md index 00b9251be8..4576b0f02b 100644 --- a/content/en/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md +++ b/content/en/docs/tasks/configure-pod-container/attach-handler-lifecycle-event.md @@ -9,7 +9,7 @@ weight: 140 This page shows how to attach handlers to Container lifecycle events. Kubernetes supports the postStart and preStop events. Kubernetes sends the postStart event immediately after a Container is started, and it sends the preStop event immediately before the -Container is terminated. +Container is terminated. A Container may specify one handler per event.