Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion content/en/docs/reference/glossary/pod.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion content/en/docs/reference/glossary/workload-instance.md
Original file line number Diff line number Diff line change
@@ -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).

Expand Down
3 changes: 2 additions & 1 deletion content/en/docs/reference/glossary/workload.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.