mirror of https://github.com/istio/istio.io.git
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:
parent
25d8f5c983
commit
c82861d10e
|
@ -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.
|
||||
|
|
|
@ -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).
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue