Merge pull request #25547 from Evalle/ISSUE-25468

State that no more than one handler is allowed per lifecycle event
This commit is contained in:
Kubernetes Prow Robot 2020-12-10 18:03:22 -08:00 committed by GitHub
commit 60d1845c05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ weight: 140
This page shows how to attach handlers to Container lifecycle events. Kubernetes supports This page shows how to attach handlers to Container lifecycle events. Kubernetes supports
the postStart and preStop events. Kubernetes sends the postStart event immediately 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 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.