Skip to content

Commit 2ad5089

Browse files
authored
Merge pull request #22963 from Arhell/fix-typo
fix typo
2 parents 2a88216 + f65ffd7 commit 2ad5089

File tree

1 file changed

+5
-5
lines changed
  • content/en/docs/concepts/workloads/pods

1 file changed

+5
-5
lines changed

content/en/docs/concepts/workloads/pods/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A _Pod_ (as in a pod of whales or pea pod) is a group of one or more
1919
for how to run the containers. A Pod's contents are always co-located and
2020
co-scheduled, and run in a shared context. A Pod models an
2121
application-specific "logical host": it contains one or more application
22-
containers which are relatively tightly coupled.
22+
containers which are relatively tightly coupled.
2323
In non-cloud contexts, applications executed on the same physical or virtual machine are analogous to cloud applications executed on the same logical host.
2424

2525
As well as application containers, a Pod can contain
@@ -51,7 +51,7 @@ with shared namespaces and shared filesystem volumes.
5151

5252
Usually you don't need to create Pods directly, even singleton Pods. Instead, create them using workload resources such as {{< glossary_tooltip text="Deployment"
5353
term_id="deployment" >}} or {{< glossary_tooltip text="Job" term_id="job" >}}.
54-
If your Pods need to track state, consider the
54+
If your Pods need to track state, consider the
5555
{{< glossary_tooltip text="StatefulSet" term_id="statefulset" >}} resource.
5656

5757
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:
6565
tightly coupled and need to share resources. These co-located containers
6666
form a single cohesive unit of service—for example, one container serving data
6767
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.
6969
The Pod wraps these containers, storage resources, and an ephemeral network
7070
identity together as a single unit.
7171

@@ -190,7 +190,7 @@ changing existing code.
190190
## Resource sharing and communication
191191

192192
Pods enable data sharing and communication among their constituent
193-
containters.
193+
containers.
194194

195195
### Storage in Pods {#pod-storage}
196196

@@ -258,7 +258,7 @@ but cannot be controlled from there.
258258
configure different Pods with different container runtime configurations.
259259
* Read about [Pod topology spread constraints](/docs/concepts/workloads/pods/pod-topology-spread-constraints/).
260260
* 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.
262262
The [Pod](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#pod-v1-core)
263263
object definition describes the object in detail.
264264
* [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

Comments
 (0)