Amazon EKS (Elastic Kubernetes Service) with Fargate provides a fully managed, serverless compute engine for containers.
The smallest unit of execution in EKS (and Kubernetes in general) is not a container — it's a pod.
In Fargate, you cannot run a container by itself — it must be inside a pod.
Understanding that the pod is the minimum execution unit helps you design better Kubernetes manifests and configure IAM, networking, and observability correctly.