Introduction To Kubernetes Part 2 - Pod
Pod
A pod is a collection of containers sharing a network and mount namespace and is the basic unit of deployment in Kubernetes.
All containers in a pod are scheduled on the same node.
Deploy your first pod
apiVersion : v1
kind : Pod
metadata :
...
blog.cloudnativefolks.org6 min read