preStop
PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod’s termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod’s termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
object
Properties
Section titled “Properties”| Property | Type | Required | Default | Description |
|---|---|---|---|---|
exec | object | No | - | Exec specifies the action to take. |
httpGet | object | No | - | HTTPGet specifies the http request to perform. |
sleep | object | No | - | Sleep represents the duration that the container should s… |
tcpSocket | object | No | - | Deprecated. TCPSocket is NOT supported as a LifecycleHand… |