Skip to content

Commit 3ff5ec1

Browse files
committed
clean up use of word: just
1 parent ee85c6c commit 3ff5ec1

File tree

81 files changed

+130
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+130
-148
lines changed

content/en/docs/concepts/architecture/nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and contains the services necessary to run
1717
{{< glossary_tooltip text="Pods" term_id="pod" >}}
1818

1919
Typically you have several nodes in a cluster; in a learning or resource-limited
20-
environment, you might have just one.
20+
environment, you might have only one node.
2121

2222
The [components](/docs/concepts/overview/components/#node-components) on a node include the
2323
{{< glossary_tooltip text="kubelet" term_id="kubelet" >}}, a

content/en/docs/concepts/cluster-administration/flow-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ poorly-behaved workloads that may be harming system health.
427427
histogram vector of queue lengths for the queues, broken down by
428428
the labels `priority_level` and `flow_schema`, as sampled by the
429429
enqueued requests. Each request that gets queued contributes one
430-
sample to its histogram, reporting the length of the queue just
430+
sample to its histogram, reporting the length of the queue immediately
431431
after the request was added. Note that this produces different
432432
statistics than an unbiased survey would.
433433
{{< note >}}

content/en/docs/concepts/cluster-administration/manage-deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ pod/my-nginx-2035384211-u3t6x labeled
278278
```
279279

280280
This first filters all pods with the label "app=nginx", and then labels them with the "tier=fe".
281-
To see the pods you just labeled, run:
281+
To see the pods you labeled, run:
282282

283283
```shell
284284
kubectl get pods -l app=nginx -L tier
@@ -411,7 +411,7 @@ and
411411

412412
## Disruptive updates
413413

414-
In some cases, you may need to update resource fields that cannot be updated once initialized, or you may just want to make a recursive change immediately, such as to fix broken pods created by a Deployment. To change such fields, use `replace --force`, which deletes and re-creates the resource. In this case, you can modify your original configuration file:
414+
In some cases, you may need to update resource fields that cannot be updated once initialized, or you may want to make a recursive change immediately, such as to fix broken pods created by a Deployment. To change such fields, use `replace --force`, which deletes and re-creates the resource. In this case, you can modify your original configuration file:
415415

416416
```shell
417417
kubectl replace -f https://k8s.io/examples/application/nginx/nginx-deployment.yaml --force

content/en/docs/concepts/cluster-administration/proxies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ There are several different proxies you may encounter when using Kubernetes:
3939
- proxies UDP, TCP and SCTP
4040
- does not understand HTTP
4141
- provides load balancing
42-
- is just used to reach services
42+
- is only used to reach services
4343

4444
1. A Proxy/Load-balancer in front of apiserver(s):
4545

content/en/docs/concepts/configuration/manage-resources-containers.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ You cannot overcommit `hugepages-*` resources.
7272
This is different from the `memory` and `cpu` resources.
7373
{{< /note >}}
7474

75-
CPU and memory are collectively referred to as *compute resources*, or just
76-
*resources*. Compute
75+
CPU and memory are collectively referred to as *compute resources*, or *resources*. Compute
7776
resources are measurable quantities that can be requested, allocated, and
7877
consumed. They are distinct from
7978
[API resources](/docs/concepts/overview/kubernetes-api/). API resources, such as Pods and
@@ -554,7 +553,7 @@ extender.
554553

555554
### Consuming extended resources
556555

557-
Users can consume extended resources in Pod specs just like CPU and memory.
556+
Users can consume extended resources in Pod specs like CPU and memory.
558557
The scheduler takes care of the resource accounting so that no more than the
559558
available amount is simultaneously allocated to Pods.
560559

content/en/docs/concepts/configuration/secret.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ empty-secret Opaque 0 2m6s
109109
```
110110

111111
The `DATA` column shows the number of data items stored in the Secret.
112-
In this case, `0` means we have just created an empty Secret.
112+
In this case, `0` means we have created an empty Secret.
113113

114114
### Service account token Secrets
115115

content/en/docs/concepts/containers/images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Here are the recommended steps to configuring your nodes to use a private regist
135135
example, run these on your desktop/laptop:
136136

137137
1. Run `docker login [server]` for each set of credentials you want to use. This updates `$HOME/.docker/config.json` on your PC.
138-
1. View `$HOME/.docker/config.json` in an editor to ensure it contains just the credentials you want to use.
138+
1. View `$HOME/.docker/config.json` in an editor to ensure it contains only the credentials you want to use.
139139
1. Get a list of your nodes; for example:
140140
- if you want the names: `nodes=$( kubectl get nodes -o jsonpath='{range.items[*].metadata}{.name} {end}' )`
141141
- if you want to get the IP addresses: `nodes=$( kubectl get nodes -o jsonpath='{range .items[*].status.addresses[?(@.type=="ExternalIP")]}{.address} {end}' )`

content/en/docs/concepts/extend-kubernetes/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Kubernetes provides several built-in authentication methods, and an [Authenticat
145145

146146
### Authorization
147147

148-
[Authorization](/docs/reference/access-authn-authz/webhook/) determines whether specific users can read, write, and do other operations on API resources. It just works at the level of whole resources -- it doesn't discriminate based on arbitrary object fields. If the built-in authorization options don't meet your needs, and [Authorization webhook](/docs/reference/access-authn-authz/webhook/) allows calling out to user-provided code to make an authorization decision.
148+
[Authorization](/docs/reference/access-authn-authz/webhook/) determines whether specific users can read, write, and do other operations on API resources. It works at the level of whole resources -- it doesn't discriminate based on arbitrary object fields. If the built-in authorization options don't meet your needs, and [Authorization webhook](/docs/reference/access-authn-authz/webhook/) allows calling out to user-provided code to make an authorization decision.
149149

150150

151151
### Dynamic Admission Control

content/en/docs/concepts/extend-kubernetes/extend-cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Kubernetes provides several built-in authentication methods, and an [Authenticat
146146

147147
### Authorization
148148

149-
[Authorization](/docs/reference/access-authn-authz/webhook/) determines whether specific users can read, write, and do other operations on API resources. It just works at the level of whole resources -- it doesn't discriminate based on arbitrary object fields. If the built-in authorization options don't meet your needs, and [Authorization webhook](/docs/reference/access-authn-authz/webhook/) allows calling out to user-provided code to make an authorization decision.
149+
[Authorization](/docs/reference/access-authn-authz/webhook/) determines whether specific users can read, write, and do other operations on API resources. It works at the level of whole resources -- it doesn't discriminate based on arbitrary object fields. If the built-in authorization options don't meet your needs, and [Authorization webhook](/docs/reference/access-authn-authz/webhook/) allows calling out to user-provided code to make an authorization decision.
150150

151151

152152
### Dynamic Admission Control

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ resource can only be in one namespace.
2828

2929
Namespaces are a way to divide cluster resources between multiple users (via [resource quota](/docs/concepts/policy/resource-quotas/)).
3030

31-
It is not necessary to use multiple namespaces just to separate slightly different
31+
It is not necessary to use multiple namespaces to separate slightly different
3232
resources, such as different versions of the same software: use
3333
[labels](/docs/concepts/overview/working-with-objects/labels) to distinguish
3434
resources within the same namespace.
@@ -91,7 +91,7 @@ kubectl config view --minify | grep namespace:
9191
When you create a [Service](/docs/concepts/services-networking/service/),
9292
it creates a corresponding [DNS entry](/docs/concepts/services-networking/dns-pod-service/).
9393
This entry is of the form `<service-name>.<namespace-name>.svc.cluster.local`, which means
94-
that if a container just uses `<service-name>`, it will resolve to the service which
94+
that if a container only uses `<service-name>`, it will resolve to the service which
9595
is local to a namespace. This is useful for using the same configuration across
9696
multiple namespaces such as Development, Staging and Production. If you want to reach
9797
across namespaces, you need to use the fully qualified domain name (FQDN).

0 commit comments

Comments
 (0)