Skip to content

Commit 782539f

Browse files
authored
Merge pull request #46565 from itaileshem/patch-1
Fix grammar in "Objects In Kubernetes" page
2 parents 2810545 + 58c857e commit 782539f

File tree

1 file changed

+3
-3
lines changed
  • content/en/docs/concepts/overview/working-with-objects

1 file changed

+3
-3
lines changed

content/en/docs/concepts/overview/working-with-objects/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ entities to represent the state of your cluster. Specifically, they can describe
2929
* The policies around how those applications behave, such as restart policies, upgrades, and fault-tolerance
3030

3131
A Kubernetes object is a "record of intent"--once you create the object, the Kubernetes system
32-
will constantly work to ensure that object exists. By creating an object, you're effectively
32+
will constantly work to ensure that the object exists. By creating an object, you're effectively
3333
telling the Kubernetes system what you want your cluster's workload to look like; this is your
3434
cluster's *desired state*.
3535

@@ -72,7 +72,7 @@ When you create an object in Kubernetes, you must provide the object spec that d
7272
desired state, as well as some basic information about the object (such as a name). When you use
7373
the Kubernetes API to create the object (either directly or via `kubectl`), that API request must
7474
include that information as JSON in the request body.
75-
Most often, you provide the information to `kubectl` in file known as a _manifest_.
75+
Most often, you provide the information to `kubectl` in a file known as a _manifest_.
7676
By convention, manifests are YAML (you could also use JSON format).
7777
Tools such as `kubectl` convert the information from a manifest into JSON or another supported
7878
serialization format when making the API request over HTTP.
@@ -121,7 +121,7 @@ its desired state.
121121
Within the `.spec` of a StatefulSet is a [template](/docs/concepts/workloads/pods/#pod-templates)
122122
for Pod objects. That template describes Pods that the StatefulSet controller will create in order to
123123
satisfy the StatefulSet specification.
124-
Different kinds of object can also have different `.status`; again, the API reference pages
124+
Different kinds of objects can also have different `.status`; again, the API reference pages
125125
detail the structure of that `.status` field, and its content for each different type of object.
126126

127127
{{< note >}}

0 commit comments

Comments
 (0)