Skip to content

Commit d536e46

Browse files
committed
fix typos
1 parent 0e33f9a commit d536e46

File tree

39 files changed

+85
-87
lines changed

39 files changed

+85
-87
lines changed

content/en/docs/concepts/cluster-administration/system-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ allow-list:
214214
215215
Additionally, the `cardinality_enforcement_unexpected_categorizations_total` meta-metric records the
216216
count of unexpected categorizations during cardinality enforcement, that is, whenever a label value
217-
is encountered that is not allowed with respect to the allow-list contraints.
217+
is encountered that is not allowed with respect to the allow-list constraints.
218218

219219
## {{% heading "whatsnext" %}}
220220

content/en/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The general workflow of a device plugin includes the following steps:
114114
// informed allocation decision when possible.
115115
rpc GetPreferredAllocation(PreferredAllocationRequest) returns (PreferredAllocationResponse) {}
116116
117-
// PreStartContainer is called, if indicated by Device Plugin during registeration phase,
117+
// PreStartContainer is called, if indicated by Device Plugin during registration phase,
118118
// before each container start. Device plugin can run device specific operations
119119
// such as resetting the device before making devices available to the container.
120120
rpc PreStartContainer(PreStartContainerRequest) returns (PreStartContainerResponse) {}
@@ -346,7 +346,7 @@ update and Kubelet needs to be restarted to reflect the correct resource capacit
346346
{{< /note >}}
347347

348348
```gRPC
349-
// AllocatableResourcesResponses contains informations about all the devices known by the kubelet
349+
// AllocatableResourcesResponses contains information about all the devices known by the kubelet
350350
message AllocatableResourcesResponse {
351351
repeated ContainerDevices devices = 1;
352352
repeated int64 cpu_ids = 2;

content/en/docs/concepts/policy/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ Dynamic Admission Controllers that act as flexible policy engines are being deve
6464
## Apply policies using Kubelet configurations
6565

6666
Kubernetes allows configuring the Kubelet on each worker node. Some Kubelet configurations act as policies:
67-
* [Process ID limts and reservations](/docs/concepts/policy/pid-limiting/) are used to limit and reserve allocatable PIDs.
67+
* [Process ID limits and reservations](/docs/concepts/policy/pid-limiting/) are used to limit and reserve allocatable PIDs.
6868
* [Node Resource Managers](/docs/concepts/policy/node-resource-managers/) can manage compute, memory, and device resources for latency-critical and high-throughput workloads.

content/en/docs/concepts/security/security-checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ availability state and recommended to improve your security posture:
390390

391391
[`NodeRestriction`](/docs/reference/access-authn-authz/admission-controllers/#noderestriction)
392392
: Restricts kubelet's permissions to only modify the pods API resources they own
393-
or the node API ressource that represent themselves. It also prevents kubelet
393+
or the node API resource that represent themselves. It also prevents kubelet
394394
from using the `node-restriction.kubernetes.io/` annotation, which can be used
395395
by an attacker with access to the kubelet's credentials to influence pod
396396
placement to the controlled node.

content/en/docs/concepts/services-networking/endpoint-slices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ perfectly full distribution of EndpointSlices. As an example, if there are 10
210210
new endpoints to add and 2 EndpointSlices with room for 5 more endpoints each,
211211
this approach will create a new EndpointSlice instead of filling up the 2
212212
existing EndpointSlices. In other words, a single EndpointSlice creation is
213-
preferrable to multiple EndpointSlice updates.
213+
preferable to multiple EndpointSlice updates.
214214

215215
With kube-proxy running on each Node and watching EndpointSlices, every change
216216
to an EndpointSlice becomes relatively expensive since it will be transmitted to

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ for pod failures independently for each index. To do so, set the
395395
`.spec.backoffLimitPerIndex` to specify the maximal number of pod failures
396396
per index.
397397

398-
When the per-index backoff limit is exceeded for an index, Kuberentes considers the index as failed and adds it to the
398+
When the per-index backoff limit is exceeded for an index, Kubernetes considers the index as failed and adds it to the
399399
`.status.failedIndexes` field. The succeeded indexes, those with a successfully
400400
executed pods, are recorded in the `.status.completedIndexes` field, regardless of whether you set
401401
the `backoffLimitPerIndex` field.
@@ -940,7 +940,7 @@ the Job status, allowing the Pod to be removed by other controllers or users.
940940

941941
{{< note >}}
942942
See [My pod stays terminating](/docs/tasks/debug/debug-application/debug-pods/) if you
943-
observe that pods from a Job are stucked with the tracking finalizer.
943+
observe that pods from a Job are stuck with the tracking finalizer.
944944
{{< /note >}}
945945

946946
### Elastic Indexed Jobs

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ pod1 1/1 Running 0 36s
225225
pod2 1/1 Running 0 36s
226226
```
227227

228-
In this manner, a ReplicaSet can own a non-homogenous set of Pods
228+
In this manner, a ReplicaSet can own a non-homogeneous set of Pods
229229

230230
## Writing a ReplicaSet manifest
231231

content/en/docs/contribute/style/diagram-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ caption and the diagram referral.
624624
flowchart
625625
A[Diagram<br><br>Inline Mermaid or<br>SVG image files]
626626
B[Diagram Caption<br><br>Add Figure Number. and<br>Caption Text]
627-
C[Diagram Referral<br><br>Referenence Figure Number<br>in text]
627+
C[Diagram Referral<br><br>Reference Figure Number<br>in text]
628628

629629
classDef box fill:#fff,stroke:#000,stroke-width:1px,color:#000;
630630
class A,B,C box

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
@@ -438,7 +438,7 @@ controller in the cluster, so they have several security features:
438438
`<signerNameDomain>/*`.
439439
* Signer-linked ClusterTrustBundles **must** be named with a prefix derived from
440440
their `spec.signerName` field. Slashes (`/`) are replaced with colons (`:`),
441-
and a final colon is appended. This is followed by an arbitary name. For
441+
and a final colon is appended. This is followed by an arbitrary name. For
442442
example, the signer `example.com/mysigner` can be linked to a
443443
ClusterTrustBundle `example.com:mysigner:<arbitrary-name>`.
444444

content/en/docs/reference/access-authn-authz/service-accounts-admin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ purged by the control plane.
166166
If users use an invalidated auto-generated token, the token validator will
167167

168168
1. add an audit annotation for the key-value pair
169-
`authentication.k8s.io/legacy-token-invalidated: <secret name>/<namepace>`,
169+
`authentication.k8s.io/legacy-token-invalidated: <secret name>/<namespace>`,
170170
1. increment the `invalid_legacy_auto_token_uses_total` metric count,
171171
1. update the Secret label `kubernetes.io/legacy-token-last-used` with the new
172172
date,

content/en/docs/reference/access-authn-authz/validating-admission-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ When an API request is validated with this admission policy, the resulting audit
375375
```
376376

377377
In this example the annotation will only be included if the `spec.replicas` of the Deployment is more than
378-
50, otherwise the CEL expression evalutes to null and the annotation will not be included.
378+
50, otherwise the CEL expression evaluates to null and the annotation will not be included.
379379

380380
Note that audit annotation keys are prefixed by the name of the `ValidatingAdmissionWebhook` and a `/`. If
381381
another admission controller, such as an admission webhook, uses the exact same audit annotation key, the

content/en/docs/reference/command-line-tools-reference/feature-gates/kubelet-pod-resources-dynamice-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ _build:
88
Extend the kubelet's pod resources gRPC endpoint to
99
to include resources allocated in `ResourceClaims` via `DynamicResourceAllocation` API.
1010
See [resource allocation reporting](/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/#monitoring-device-plugin-resources) for more details.
11-
with informations about the allocatable resources, enabling clients to properly
11+
with information about the allocatable resources, enabling clients to properly
1212
track the free compute resources on a node.

content/en/docs/reference/command-line-tools-reference/kubelet.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ ZeroLimitedNominalConcurrencyShares=true|false (BETA - default=false)<br/>
609609
<td colspan="2">--kube-reserved strings&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Default: &lt;None&gt;</td>
610610
</tr>
611611
<tr>
612-
<td></td><td style="line-height: 130%; word-wrap: break-word;">A set of <code>&lt;resource name&gt;=&lt;resource quantity&gt;</code> (e.g. &quot;<code>cpu=200m,memory=500Mi,ephemeral-storage=1Gi,pid='100'</code>&auot;) pairs that describe resources reserved for kubernetes system components. Currently <code>cpu</code>, <code>memory</code> and local <code>ephemeral-storage</code> for root file system are supported. See <a href="https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#kube-reserved">here</a> for more detail. (DEPRECATED: This parameter should be set via the config file specified by the kubelet's <code>--config</code> flag. See <a href="https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/">kubelet-config-file</a> for more information.)</td>
612+
<td></td><td style="line-height: 130%; word-wrap: break-word;">A set of <code>&lt;resource name&gt;=&lt;resource quantity&gt;</code> (e.g. &quot;<code>cpu=200m,memory=500Mi,ephemeral-storage=1Gi,pid='100'</code>&quot;) pairs that describe resources reserved for kubernetes system components. Currently <code>cpu</code>, <code>memory</code> and local <code>ephemeral-storage</code> for root file system are supported. See <a href="https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/#kube-reserved">here</a> for more detail. (DEPRECATED: This parameter should be set via the config file specified by the kubelet's <code>--config</code> flag. See <a href="https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/">kubelet-config-file</a> for more information.)</td>
613613
</tr>
614614

615615
<tr>
@@ -1087,5 +1087,4 @@ Insecure values:
10871087
<td></td><td style="line-height: 130%; word-wrap: break-word;">Specifies interval for kubelet to calculate and cache the volume disk usage for all pods and volumes. To disable volume calculations, set to a negative number. (DEPRECATED: This parameter should be set via the config file specified by the kubelet's <code>--config</code> flag. See <a href="https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/">kubelet-config-file</a> for more information.)</td>
10881088
</tr>
10891089
</tbody>
1090-
</table>
1091-
1090+
</table>

content/en/docs/reference/config-api/apiserver-audit.v1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ be specified per rule in which case the union of both are omitted.</p>
253253
<td>
254254
<p>OmitManagedFields indicates whether to omit the managed fields of the request
255255
and response bodies from being written to the API audit log.
256-
This is used as a global default - a value of 'true' will omit the managed fileds,
256+
This is used as a global default - a value of 'true' will omit the managed fields,
257257
otherwise the managed fields will be included in the API audit log.
258258
Note that this can also be specified per rule in which case the value specified
259259
in a rule will override the global default.</p>
@@ -527,7 +527,7 @@ An empty list means no restrictions will apply.</p>
527527
and response bodies from being written to the API audit log.</p>
528528
<ul>
529529
<li>a value of 'true' will drop the managed fields from the API audit log</li>
530-
<li>a value of 'false' indicates that the managed fileds should be included
530+
<li>a value of 'false' indicates that the managed fields should be included
531531
in the API audit log
532532
Note that the value, if specified, in this rule will override the global default
533533
If a value is not specified then the global default specified in

content/en/docs/reference/config-api/kubeadm-config.v1beta4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Use <code>APIServer.ExtraEnvs</code>, <code>ControllerManager.ExtraEnvs</code>,
1616
<code>Etcd.Local.ExtraEnvs</code>.</li>
1717
<li>The <code>ResetConfiguration</code> API type is now supported in v1beta4.
1818
Users are able to reset a node by passing a <code>--config</code> file to <code>kubeadm reset</code>.</li>
19-
<li><code>dry-run</code> mode is now configureable in InitConfiguration and JoinConfiguration config files.</li>
19+
<li><code>dry-run</code> mode is now configurable in InitConfiguration and JoinConfiguration config files.</li>
2020
<li>Replace the existing string/string extra argument maps with structured extra arguments
2121
that support duplicates. The change applies to <code>ClusterConfiguration</code> - <code>APIServer.ExtraArgs</code>,
2222
<code>ControllerManager.ExtraArgs</code>, <code>Scheduler.ExtraArgs</code>. Also to <code>NodeRegistrationOptions.KubeletExtraArgs</code>.</li>

content/en/docs/reference/config-api/kubeconfig.v1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@ TODO(jlowdermilk): remove this after eliminating downstream dependencies.</p>
5555
<a href="#NamedCluster"><code>[]NamedCluster</code></a>
5656
</td>
5757
<td>
58-
<p>Clusters is a map of referencable names to cluster configs</p>
58+
<p>Clusters is a map of referenceable names to cluster configs</p>
5959
</td>
6060
</tr>
6161
<tr><td><code>users</code> <B>[Required]</B><br/>
6262
<a href="#NamedAuthInfo"><code>[]NamedAuthInfo</code></a>
6363
</td>
6464
<td>
65-
<p>AuthInfos is a map of referencable names to user configs</p>
65+
<p>AuthInfos is a map of referenceable names to user configs</p>
6666
</td>
6767
</tr>
6868
<tr><td><code>contexts</code> <B>[Required]</B><br/>
6969
<a href="#NamedContext"><code>[]NamedContext</code></a>
7070
</td>
7171
<td>
72-
<p>Contexts is a map of referencable names to context configs</p>
72+
<p>Contexts is a map of referenceable names to context configs</p>
7373
</td>
7474
</tr>
7575
<tr><td><code>current-context</code> <B>[Required]</B><br/>

content/en/docs/reference/config-api/kubelet-config.v1beta1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ Default: 50</p>
545545
<td>
546546
<p>eventBurst is the maximum size of a burst of event creations, temporarily
547547
allows event creations to burst to this number, while still not exceeding
548-
eventRecordQPS. This field canot be a negative number and it is only used
548+
eventRecordQPS. This field cannot be a negative number and it is only used
549549
when eventRecordQPS &gt; 0.
550550
Default: 100</p>
551551
</td>

content/en/docs/reference/config-api/kubelet-credentialprovider.v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This response should be set to the same apiVersion as CredentialProviderRequest.
6363
<a href="#credentialprovider-kubelet-k8s-io-v1-PluginCacheKeyType"><code>PluginCacheKeyType</code></a>
6464
</td>
6565
<td>
66-
<p>cacheKeyType indiciates the type of caching key to use based on the image provided
66+
<p>cacheKeyType indicates the type of caching key to use based on the image provided
6767
in the request. There are three valid values for the cache key type: Image, Registry, and
6868
Global. If an invalid value is specified, the response will NOT be used by the kubelet.</p>
6969
</td>

content/en/docs/reference/instrumentation/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,14 +1482,14 @@ Alpha metrics do not have any API guarantees. These metrics must be used at your
14821482
</ul>
14831483
</div><div class="metric" data-stability="alpha">
14841484
<div class="metric_name">ephemeral_volume_controller_create_failures_total</div>
1485-
<div class="metric_help">Number of PersistenVolumeClaims creation requests</div>
1485+
<div class="metric_help">Number of PersistentVolumeClaims creation requests</div>
14861486
<ul>
14871487
<li><label class="metric_detail">Stability Level:</label><span class="metric_stability_level">ALPHA</span></li>
14881488
<li data-type="counter"><label class="metric_detail">Type:</label> <span class="metric_type">Counter</span></li>
14891489
</ul>
14901490
</div><div class="metric" data-stability="alpha">
14911491
<div class="metric_name">ephemeral_volume_controller_create_total</div>
1492-
<div class="metric_help">Number of PersistenVolumeClaims creation requests</div>
1492+
<div class="metric_help">Number of PersistentVolumeClaims creation requests</div>
14931493
<ul>
14941494
<li><label class="metric_detail">Stability Level:</label><span class="metric_stability_level">ALPHA</span></li>
14951495
<li data-type="counter"><label class="metric_detail">Type:</label> <span class="metric_type">Counter</span></li>

content/en/docs/reference/kubernetes-api/cluster-resources/api-service-v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ APIServiceSpec contains information for locating and communicating with a server
6262

6363
- **groupPriorityMinimum** (int32), required
6464

65-
GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s
65+
GroupPriorityMinimum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s
6666

6767
- **versionPriority** (int32), required
6868

0 commit comments

Comments
 (0)