Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 1.14 KB

V1Lifecycle.md

File metadata and controls

11 lines (7 loc) · 1.14 KB

V1Lifecycle

Properties

Name Type Description Notes
post_start V1Handler PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks [optional]
pre_stop V1Handler PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks [optional]

[Back to Model list] [Back to API list] [Back to README]