Skip to content

Commit 0f6cb4f

Browse files
authored
Merge pull request #31863 from Aayush987/typo_fix
Fixed typo in cpu-constraint-namespace.md & memory-default-namespace.md
2 parents b5a70ce + 27caffc commit 0f6cb4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/en/docs/tasks/administer-cluster/manage-resources/cpu-constraint-namespace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ kubectl apply -f https://k8s.io/examples/admin/resource/cpu-constraints-pod-3.ya
170170
```
171171

172172
The output shows that the Pod does not get created, because it defines an unacceptable container.
173-
That container is not acceptable because it specifies a CPU limit that is lower than the
173+
That container is not acceptable because it specifies a CPU request that is lower than the
174174
enforced minimum:
175175

176176
```

content/en/docs/tasks/administer-cluster/manage-resources/memory-default-namespace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Here are two of the restrictions that a resource quota imposes on a namespace:
177177
* For every Pod that runs in the namespace, the Pod and each of its containers must have a memory limit.
178178
(If you specify a memory limit for every container in a Pod, Kubernetes can infer the Pod-level memory
179179
limit by adding up the limits for its containers).
180-
* CPU limits apply a resource reservation on the node where the Pod in question is scheduled.
180+
* Memory limits apply a resource reservation on the node where the Pod in question is scheduled.
181181
The total amount of memory reserved for all Pods in the namespace must not exceed a specified limit.
182182
* The total amount of memory actually used by all Pods in the namespace must also not exceed a specified limit.
183183

0 commit comments

Comments
 (0)