Skip to content

Commit 6c43d09

Browse files
authored
Merge pull request #32393 from nate-double-u/merged-main-dev-1.24
Merged main into dev 1.24
2 parents f6a43e1 + ee1a85d commit 6c43d09

File tree

42 files changed

+1548
-1063
lines changed

Some content is hidden

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

42 files changed

+1548
-1063
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ that lets you store configuration for other objects to use. Unlike most
4242
Kubernetes objects that have a `spec`, a ConfigMap has `data` and `binaryData`
4343
fields. These fields accept key-value pairs as their values. Both the `data`
4444
field and the `binaryData` are optional. The `data` field is designed to
45-
contain UTF-8 byte sequences while the `binaryData` field is designed to
45+
contain UTF-8 strings while the `binaryData` field is designed to
4646
contain binary data as base64-encoded strings.
4747

4848
The name of a ConfigMap must be a valid

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ pluginapi.Device{ID: "25102017", Health: pluginapi.Healthy, Topology:&pluginapi.
344344
Here are some examples of device plugin implementations:
345345

346346
* The [AMD GPU device plugin](https://github.com/RadeonOpenCompute/k8s-device-plugin)
347-
* The [Intel device plugins](https://github.com/intel/intel-device-plugins-for-kubernetes) for Intel GPU, FPGA and QuickAssist devices
347+
* The [Intel device plugins](https://github.com/intel/intel-device-plugins-for-kubernetes) for Intel GPU, FPGA, QAT, VPU, SGX, DSA, DLB and IAA devices
348348
* The [KubeVirt device plugins](https://github.com/kubevirt/kubernetes-device-plugins) for hardware-assisted virtualization
349349
* The [NVIDIA GPU device plugin](https://github.com/NVIDIA/k8s-device-plugin)
350350
* Requires [nvidia-docker](https://github.com/NVIDIA/nvidia-docker) 2.0, which allows you to run GPU-enabled Docker containers.

content/en/docs/concepts/services-networking/ingress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ spec:
316316
parameters:
317317
# The parameters for this IngressClass are specified in an
318318
# IngressParameter (API group k8s.example.com) named "external-config",
319-
# that's in the "external-configuration" configuration namespace.
319+
# that's in the "external-configuration" namespace.
320320
scope: Namespace
321321
apiGroup: k8s.example.com
322322
kind: IngressParameter

content/en/docs/concepts/workloads/pods/pod-lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ completion or failed for some reason. When you use `kubectl` to query a Pod with
136136
a container that is `Terminated`, you see a reason, an exit code, and the start and
137137
finish time for that container's period of execution.
138138

139-
If a container has a `preStop` hook configured, that runs before the container enters
139+
If a container has a `preStop` hook configured, this hook runs before the container enters
140140
the `Terminated` state.
141141

142142
## Container restart policy {#restart-policy}

content/en/docs/reference/kubectl/cheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ kubectl rollout status -w deployment/frontend # Watch rolling
238238
kubectl rollout restart deployment/frontend # Rolling restart of the "frontend" deployment
239239

240240

241-
cat pod.json | kubectl replace -f - # Replace a pod based on the JSON passed into std
241+
cat pod.json | kubectl replace -f - # Replace a pod based on the JSON passed into stdin
242242

243243
# Force replace, delete and then re-create the resource. Will cause a service outage.
244244
kubectl replace --force -f ./pod.json

content/en/docs/reference/labels-annotations-taints/_index.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,16 @@ Used on: PersistentVolumeClaim
184184

185185
This annotation has been deprecated.
186186

187+
### volume.beta.kubernetes.io/mount-options (deprecated) {#mount-options}
188+
189+
Example : `volume.beta.kubernetes.io/mount-options: "ro,soft"`
190+
191+
Used on: PersistentVolume
192+
193+
A Kubernetes administrator can specify additional [mount options](/docs/concepts/storage/persistent-volumes/#mount-options) for when a PersistentVolume is mounted on a node.
194+
195+
This annotation has been deprecated.
196+
187197
### volume.kubernetes.io/storage-provisioner
188198

189199
Used on: PersistentVolumeClaim
@@ -475,7 +485,7 @@ The [`securityContext`](/docs/reference/kubernetes-api/workload-resources/pod-v1
475485
When you [specify the security context for a Pod](/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod),
476486
the settings you specify apply to all containers in that Pod.
477487

478-
### container.seccomp.security.alpha.kubernetes.io/[NAME] {#container-seccomp-security-alpha-kubernetes-io}
488+
### container.seccomp.security.alpha.kubernetes.io/[NAME] (deprecated) {#container-seccomp-security-alpha-kubernetes-io}
479489

480490
This annotation has been deprecated since Kubernetes v1.19 and will become non-functional in v1.25.
481491
The tutorial [Restrict a Container's Syscalls with seccomp](/docs/tutorials/security/seccomp/) takes

content/en/docs/tasks/configure-pod-container/assign-memory-resource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ and a memory limit of 200 MiB.
9999
```yaml
100100
...
101101
resources:
102-
limits:
103-
memory: 200Mi
104102
requests:
105103
memory: 100Mi
104+
limits:
105+
memory: 200Mi
106106
...
107107
```
108108

content/en/docs/tasks/tools/install-kubectl-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ For example, to download version {{< param "fullversion" >}} on Linux, type:
8383

8484
```bash
8585
chmod +x kubectl
86-
mkdir -p ~/.local/bin/kubectl
86+
mkdir -p ~/.local/bin
8787
mv ./kubectl ~/.local/bin/kubectl
8888
# and then append (or prepend) ~/.local/bin to $PATH
8989
```

content/en/examples/pods/resource/memory-request-limit-3.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ spec:
88
- name: memory-demo-3-ctr
99
image: polinux/stress
1010
resources:
11-
limits:
12-
memory: "1000Gi"
1311
requests:
1412
memory: "1000Gi"
13+
limits:
14+
memory: "1000Gi"
1515
command: ["stress"]
1616
args: ["--vm", "1", "--vm-bytes", "150M", "--vm-hang", "1"]

content/en/examples/pods/resource/memory-request-limit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ spec:
88
- name: memory-demo-ctr
99
image: polinux/stress
1010
resources:
11-
limits:
12-
memory: "200Mi"
1311
requests:
1412
memory: "100Mi"
13+
limits:
14+
memory: "200Mi"
1515
command: ["stress"]
1616
args: ["--vm", "1", "--vm-bytes", "150M", "--vm-hang", "1"]

0 commit comments

Comments
 (0)