Pod Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a Kubernetes Pod resource in the v1 API version.
public Pod();
Public Sub New ()
Remarks
A Pod is the smallest and simplest Kubernetes resource that serves as a unit of deployment in the cluster. It encapsulates an application container or multiple containers, along with storage resources, networking, and configuration options to manage the execution of the containerized application. Pods are the foundational building blocks of Kubernetes workloads and are managed by controllers like Deployments, ReplicaSets, and Jobs.