Difference between revisions of "Exploring the Kubernetes object model"

From MyWiki
Jump to: navigation, search
(Created page with " A Pod is a logical collection of one or more containers, which: *Are scheduled together on the same host with the Pod *The same network namespace *Have access to mount the sa...")
 
Line 1: Line 1:
A Pod is a logical collection of one or more containers, which:
+
A Pod is a logical collection of one or more containers, which:
 
*Are scheduled together on the same host with the Pod
 
*Are scheduled together on the same host with the Pod
 
*The same network namespace
 
*The same network namespace
 
*Have access to mount the same external storage (volumes).
 
*Have access to mount the same external storage (volumes).

Revision as of 16:40, 22 September 2019

A Pod is a logical collection of one or more containers, which:

  • Are scheduled together on the same host with the Pod
  • The same network namespace
  • Have access to mount the same external storage (volumes).