From fb043d33becb2133b3717a4c266deed7fb11437a Mon Sep 17 00:00:00 2001 From: TigerXu Date: Sat, 12 Aug 2017 23:48:21 +0800 Subject: [PATCH] Update pod.md (#4764) * Update pod.md update pod desc * Update pod.md * edit --- docs/concepts/workloads/pods/pod.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/workloads/pods/pod.md b/docs/concepts/workloads/pods/pod.md index 66fb4e1d4a..dd7dbd5fa3 100644 --- a/docs/concepts/workloads/pods/pod.md +++ b/docs/concepts/workloads/pods/pod.md @@ -13,8 +13,8 @@ managed in Kubernetes. ## What is a Pod? A _pod_ (as in a pod of whales or pea pod) is a group of one or more containers -(such as Docker containers), the shared storage for those containers, and -options about how to run the containers. A pod's contents are always co-located and +(such as Docker containers), with shared storage/network, and a specification +for how to run the containers. A pod's contents are always co-located and co-scheduled, and run in a shared context. A pod models an application-specific "logical host" - it contains one or more application containers which are relatively tightly coupled — in a pre-container