PodSpecs
PodSpecs are the specifications that describe the desired state of a pod in Kubernetes. They form the core of a Pod object and define what runs inside the pod, how it is scheduled, and how it interacts with the surrounding environment. PodSpecs are typically embedded in Pod templates used by higher-level controllers to create and manage pods.
A PodSpec specifies the pod’s components and runtime behavior. The containers field defines one or more container
PodSpecs are used by controllers such as Deployments, StatefulSets, DaemonSets, Jobs, and ReplicaSets. The spec in