March 2017
Beginner to intermediate
925 pages
18h 11m
English
The pod is a group of one or more containers and the smallest deployable unit in Kubernetes. Pods are always co-located and co-scheduled, and run in a shared context. Each pod is isolated by the following Linux namespaces:
In a pre-container world, they would have been executed on the same physical or virtual machine.
It is useful to construct your own application stack pod (for example, web server and database) that are mixed by different Docker images.
You must have a Kubernetes cluster and make sure that the Kubernetes node has accessibility to the Docker Hub (https://hub.docker.com) in order to download ...
Read now
Unlock full access