You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/workloads/pods/_index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ A _Pod_ (as in a pod of whales or pea pod) is a group of one or more
19
19
for how to run the containers. A Pod's contents are always co-located and
20
20
co-scheduled, and run in a shared context. A Pod models an
21
21
application-specific "logical host": it contains one or more application
22
-
containers which are relatively tightly coupled.
22
+
containers which are relatively tightly coupled.
23
23
In non-cloud contexts, applications executed on the same physical or virtual machine are analogous to cloud applications executed on the same logical host.
24
24
25
25
As well as application containers, a Pod can contain
@@ -51,7 +51,7 @@ with shared namespaces and shared filesystem volumes.
51
51
52
52
Usually you don't need to create Pods directly, even singleton Pods. Instead, create them using workload resources such as {{< glossary_tooltip text="Deployment"
53
53
term_id="deployment" >}} or {{< glossary_tooltip text="Job" term_id="job" >}}.
Pods in a Kubernetes cluster are used in two main ways:
@@ -65,7 +65,7 @@ Pods in a Kubernetes cluster are used in two main ways:
65
65
tightly coupled and need to share resources. These co-located containers
66
66
form a single cohesive unit of service—for example, one container serving data
67
67
stored in a shared volume to the public, while a separate _sidecar_ container
68
-
refreshes or updates those files.
68
+
refreshes or updates those files.
69
69
The Pod wraps these containers, storage resources, and an ephemeral network
70
70
identity together as a single unit.
71
71
@@ -190,7 +190,7 @@ changing existing code.
190
190
## Resource sharing and communication
191
191
192
192
Pods enable data sharing and communication among their constituent
193
-
containters.
193
+
containers.
194
194
195
195
### Storage in Pods {#pod-storage}
196
196
@@ -258,7 +258,7 @@ but cannot be controlled from there.
258
258
configure different Pods with different container runtime configurations.
259
259
* Read about [Pod topology spread constraints](/docs/concepts/workloads/pods/pod-topology-spread-constraints/).
260
260
* Read about [PodDisruptionBudget](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/) and how you can use it to manage application availability during disruptions.
261
-
* Pod is a top-level resource in the Kubernetes REST API.
261
+
* Pod is a top-level resource in the Kubernetes REST API.
262
262
The [Pod](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#pod-v1-core)
263
263
object definition describes the object in detail.
264
264
*[The Distributed System Toolkit: Patterns for Composite Containers](https://kubernetes.io/blog/2015/06/the-distributed-system-toolkit-patterns) explains common layouts for Pods with more than one container.
0 commit comments