Pods
Pods are the smallest deployable units in Kubernetes, representing a single instance of a running process in a cluster. They can host one or more tightly coupled containers that share storage, networking, and configurations. Pods provide scalability, fault tolerance, and load balancing, enabling efficient management of containerized applications.
In the Pods tab the user will see the list of pods for the selected Namespace. A summary for the available pod will be visible in this section including Node, Image, Status.

Once a user selects the pod s/he will be able to view all the status, configuration information of the pod.

From the containers section, users will be able to access the terminal in the browser and view the log.
Use Case of Pods -
- Microservices Deployment
- Batch Processing Jobs
- Multi-Container Applications
- Scalable Applications
- Stateful Applications
More Details: https://kubernetes.io/docs/concepts/workloads/pods
Next Page
Replica Sets