Clarify relationship between pods and workloads (#5130)

* Clarify relationship between pods and workloads

* Update content/en/docs/reference/glossary/pod.md

Co-Authored-By: Martin Taillefer <geeknoid@users.noreply.github.com>
This commit is contained in:
Frank Budinsky 2019-10-11 15:55:21 -04:00 committed by Istio Automation
parent 25d8f5c983
commit c82861d10e
3 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,7 @@
---
title: Pod
---
A Pod is a group of one or more containers (such as [Docker](https://www.docker.com/) containers), with shared storage/network, and a specification for how to run the containers. A pod is the smallest deployable unit of computing in [Kubernetes](https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/).
A Pod is a group of one or more containers (such as [Docker](https://www.docker.com/) containers),
with shared storage and network, and a specification for how to run the containers.
Pods are the [workload instances](#workload-instance) in a
[Kubernetes](https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/) deployment of Istio.

View File

@ -1,7 +1,7 @@
---
title: Workload Instance
---
A single instantiation of a workload's binary.
A single instantiation of a [workload's](#workload) binary.
A workload instance can expose zero or more [service endpoints](#service-endpoint),
and can consume zero or more [services](#service).

View File

@ -7,5 +7,6 @@ using the following [attributes](#attribute):
* `source.workload.name`, `source.workload.namespace`, `source.workload.uid`
* `destination.workload.name`, `destination.workload.namespace`, `destination.workload.uid`
In Kubernetes, a workload typically corresponds to a Kubernetes deployment, while a workload instance corresponds to an individual pod managed
In Kubernetes, a workload typically corresponds to a Kubernetes deployment,
while a [workload instance](#workload-instance) corresponds to an individual pod managed
by the deployment.