0 votes
in Kubernetes K8s by

What is a pod in Kubernetes?

1 Answer

0 votes
by

Pods are high-level structures that wrap one or more containers. This is because containers are not run directly in Kubernetes. Containers in the same pod share a local network and the same resources, allowing them to easily communicate with other containers in the same pod as if they were on the same machine while at the same time maintaining a degree of isolation.

...