LifecycleHandlerV1 Properties
Class Properties 4 members
Represents a handler for Kubernetes lifecycle events.
Represents an action that executes a command within a container.
public ExecActionV1 Exec { get; set; }Remarks
This property defines the execution of a command line inside a container. It is typically used in Kubernetes lifecycle hooks or probes for custom actions such as health checks or running scripts.
Represents the HTTP GET action associated with a lifecycle handler in Kubernetes resources.
public HttpGetActionV1 HttpGet { get; set; }Remarks
The action defines an HTTP GET request that is typically utilized in scenarios such as health checks or readiness probes. It supports configuration of parameters including the HTTP scheme, target path, host, port, and optional HTTP headers.
Gets or sets a sleep action configuration for a lifecycle handler.
public SleepActionV1 Sleep { get; set; }Remarks
Sleep specifies a delay for a defined duration in seconds. This is commonly used in Kubernetes lifecycle management to introduce a delay before proceeding to the next operation.
Gets or sets the TcpSocketActionV1 property.
public TcpSocketActionV1 TcpSocket { get; set; }Remarks
TcpSocket represents an action performed on a specified TCP socket. This property is used in the context of lifecycle hooks or probes within Kubernetes resources to establish a connection on the given host and port.