Containers
A container spec defines the image and process to run. Common container settings include:imageURIfor the container image.imageDigestwhen an image digest should be pinned.imagePullPolicyfor pull behavior.commandandargsto override image defaults.envfor environment variables.resources.requestsandresources.limitsfor CPU, memory, and disk.
Requests and limits
IDYL uses resource requests for placement. If a request is omitted for a resource but a limit is present for the same resource, the limit is used as the effective request for placement.GPU requirements
GPU requirements belong on the pod spec asgpu.
GPU is a host device requirement for the pod, not a per-container setting. All containers in the pod share the pod-level GPU access.
Host requirements
Userequire when a workload needs host capabilities beyond CPU, memory, disk, or GPU selection.

