From 2e73fb64ee741bbe3d5be75947b508e825678478 Mon Sep 17 00:00:00 2001 From: Vageesha17 <47109150+Vageesha17@users.noreply.github.com> Date: Thu, 6 Jun 2019 10:48:10 +0530 Subject: [PATCH] update pod-overview.md (#14758) replaced the changed required in #14746 --- content/en/docs/concepts/workloads/pods/pod-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/workloads/pods/pod-overview.md b/content/en/docs/concepts/workloads/pods/pod-overview.md index fb8c7a5c0e..81a2b397b5 100644 --- a/content/en/docs/concepts/workloads/pods/pod-overview.md +++ b/content/en/docs/concepts/workloads/pods/pod-overview.md @@ -17,7 +17,7 @@ This page provides an overview of `Pod`, the smallest deployable object in the K {{% capture body %}} ## Understanding Pods -A *Pod* is the basic building block of Kubernetes--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents processes running on your {{< glossary_tooltip term_id="cluster" >}}. +A *Pod* is the basic execution unit of a Kubernetes application--the smallest and simplest unit in the Kubernetes object model that you create or deploy. A Pod represents processes running on your {{< glossary_tooltip term_id="cluster" >}}. A Pod encapsulates an application's container (or, in some cases, multiple containers), storage resources, a unique network IP, and options that govern how the container(s) should run. A Pod represents a unit of deployment: *a single instance of an application in Kubernetes*, which might consist of either a single {{< glossary_tooltip text="container" term_id="container" >}} or a small number of containers that are tightly coupled and that share resources.