Login
Remember
Register
Ask a Question
What is the difference between the pod and the container?
0
votes
asked
May 19, 2023
in
Kubernetes K8s
by
sharadyadav1986
What is the difference between the pod and the container?
pod
container
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 19, 2023
by
sharadyadav1986
Pods are the collection of containers used as the unit of replication in Kubernetes. Containers are the set of codes to compile in a pod of the application. Containers can communicate with other containers in the same pod.
...