The Smallest Deployable Compute Object in Kubernetes
Pod is the target of deployment and a collection of containers running in a cluster. You can send requests to pods using labels and selectors.
If a pod is in Pending state, check for resource shortages or dependent objects using the describe command.
Kubernetes Pod Notion
Kubernetes Pod Usages
Kubernetes - POD -
A Pod is a basic unit of deployment that encloses one or more containers in it. The Pod API object is used to create a single instance of a Pod. An application may need multiple things for its operation as shown in the diagram.
https://spectrumstutz.com/k8s/kubernetes-pod/

k8s pod autoscaler 개념 (HPA, VPA)
Pod autoscaling에 대해 개념적으로 알아보도록 하겠습니다. 지난 포스팅에서는 k8s CA(cluster autoscaler)에 대해서 알아봤는데요, 이번에는 그 연장선이라고 할 수 있습니다. 처음 CA(Cluster Autoscaler)를 도입할 때, 여러 명의 서비스 개발자가 계속해서 여러 개의 서비스를 배포할 수 있도록 node에 pod이 가득 차면 새로운 worker node를 만들어주기 위해 CA를 도입하였습니다. 그렇다면 개발자들이 pod deploy를 해야만 pod의 갯수가 증가할까요?
https://corgipan.tistory.com/4

Seonglae Cho