Single-Container vs. Multi-Container Pods
Learn about the single-container and multi-container Pods.
We'll cover the following...
Single-container Pods
We should not think of Pods as resources that should do anything beyond the definition of the smallest unit in our cluster. A Pod is a collection of containers that share the same resources. Not much more. Everything else should be accomplished with higher-level constructs. In the next chapters, we’ll explore how to scale Pods without changing their definition.
Let’s go back to our ...