Skip to content

Commit 53dc63a

Browse files
committed
editing as per the reviews.
Signed-off-by: Ritikaa96 <[email protected]>
1 parent 5053a95 commit 53dc63a

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,11 @@ For example: `partition in (customerA, customerB),environment!=qa`.
201201

202202
### LIST and WATCH filtering
203203

204-
LIST and {{< glossary_tooltip text="WATCH" term_id="watch" >}} operations may specify label selectors to filter the sets of objects
205-
returned using a query parameter. Both requirements are permitted
204+
For **list** and **watch** operations, you can specify label selectors to filter the sets of objects
205+
returned; you specify the filter using a query parameter.
206+
(To learn in detail about watches in Kubernetes, read
207+
[efficient detection of changes](/docs/reference/using-api/api-concepts/#efficient-detection-of-changes)).
208+
Both requirements are permitted
206209
(presented here as they would appear in a URL query string):
207210

208211
* _equality-based_ requirements: `?labelSelector=environment%3Dproduction,tier%3Dfrontend`

content/en/docs/concepts/workloads/controllers/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ apply multiple fixes in between pausing and resuming without triggering unnecess
815815
```
816816
* {{< glossary_tooltip text="Watch" term_id="watch" >}} the status of the rollout until it's done.
817817
```shell
818-
kubectl get rs -w
818+
kubectl get rs --watch
819819
```
820820

821821
The output is similar to this:

content/en/docs/reference/access-authn-authz/authorization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Kubernetes reviews only the following API request attributes:
6161
* **extra** - A map of arbitrary string keys to string values, provided by the authentication layer.
6262
* **API** - Indicates whether the request is for an API resource.
6363
* **Request path** - Path to miscellaneous non-resource endpoints like `/api` or `/healthz`.
64-
* **API request verb** - API verbs like `get`, `list`, `create`, `update`, `patch`, `{{< glossary_tooltip text="watch" term_id="watch" >}}`, `delete`, and `deletecollection` are used for resource requests. To determine the request verb for a resource API endpoint, see [request verbs and authorization](/docs/reference/access-authn-authz/authorization/#determine-the-request-verb).
64+
* **API request verb** - API verbs like `get`, `list`, `create`, `update`, `patch`, `watch`, `delete`, and `deletecollection` are used for resource requests. To determine the request verb for a resource API endpoint, see [request verbs and authorization](/docs/reference/access-authn-authz/authorization/#determine-the-request-verb).
6565
* **HTTP request verb** - Lowercased HTTP methods like `get`, `post`, `put`, and `delete` are used for non-resource requests.
6666
* **Resource** - The ID or name of the resource that is being accessed (for resource requests only) -- For resource requests using `get`, `update`, `patch`, and `delete` verbs, you must provide the resource name.
6767
* **Subresource** - The subresource that is being accessed (for resource requests only).

content/en/docs/reference/access-authn-authz/certificate-signing-requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ the bundle with their own arbitrary but stable ordering.
407407
ClusterTrustBundle objects should be considered world-readable within the
408408
cluster. If your cluster uses [RBAC](/docs/reference/access-authn-authz/rbac/)
409409
authorization, all ServiceAccounts have a default grant that allows them to
410-
**get**, **list**, and **{{< glossary_tooltip text="watch" term_id="watch" >}}** all ClusterTrustBundle objects.
410+
**get**, **list**, and **watch** all ClusterTrustBundle objects.
411411
If you use your own authorization mechanism and you have enabled
412412
ClusterTrustBundles in your cluster, you should set up an equivalent rule to
413413
make these objects public within the cluster, so that they work as intended.

content/en/docs/reference/glossary/watch.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ tags:
1111
- API verb
1212
- fundamental
1313
---
14-
A verb that is used to track changes to an object in Kubernetes as a stream. It is used for the excellent detection of changes.
14+
A verb that is used to track changes to an object in Kubernetes as a stream.
15+
It is used for the efficient detection of changes.
1516

1617
<!--more-->
1718

content/en/docs/reference/using-api/api-concepts.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ fine grained authorization (such as separate views for Pod details and
1919
log retrievals), and can accept and serve those resources in different
2020
representations for convenience or efficiency.
2121

22-
Kubernetes supports efficient change notifications on resources via *{{< glossary_tooltip text="watches" term_id="watch" >}}*.
22+
Kubernetes supports efficient change notifications on resources via
23+
_watches_:
24+
{{< glossary_definition prepend="in the Kubernetes API, watch is" term_id="watch" length="short" >}}
2325
Kubernetes also provides consistent list operations so that API clients can
2426
effectively cache, track, and synchronize the state of resources.
2527

0 commit comments

Comments
 (0)