Skip to content

Commit 6bba180

Browse files
authored
Increase readability by refining the wording in cpu-management-policies.md
1 parent 562575f commit 6bba180

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/en/docs/tasks/administer-cluster/cpu-management-policies.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ spec:
165165
image: nginx
166166
```
167167
168-
This pod runs in the `BestEffort` QoS class because no resource `requests` or
168+
The pod above runs in the `BestEffort` QoS class because no resource `requests` or
169169
`limits` are specified. It runs in the shared pool.
170170

171171
```yaml
@@ -180,7 +180,7 @@ spec:
180180
memory: "100Mi"
181181
```
182182

183-
This pod runs in the `Burstable` QoS class because resource `requests` do not
183+
The pod above runs in the `Burstable` QoS class because resource `requests` do not
184184
equal `limits` and the `cpu` quantity is not specified. It runs in the shared
185185
pool.
186186

@@ -198,7 +198,7 @@ spec:
198198
cpu: "1"
199199
```
200200

201-
This pod runs in the `Burstable` QoS class because resource `requests` do not
201+
The pod above runs in the `Burstable` QoS class because resource `requests` do not
202202
equal `limits`. It runs in the shared pool.
203203

204204
```yaml
@@ -215,7 +215,7 @@ spec:
215215
cpu: "2"
216216
```
217217

218-
This pod runs in the `Guaranteed` QoS class because `requests` are equal to `limits`.
218+
The pod above runs in the `Guaranteed` QoS class because `requests` are equal to `limits`.
219219
And the container's resource limit for the CPU resource is an integer greater than
220220
or equal to one. The `nginx` container is granted 2 exclusive CPUs.
221221

@@ -234,7 +234,7 @@ spec:
234234
cpu: "1.5"
235235
```
236236

237-
This pod runs in the `Guaranteed` QoS class because `requests` are equal to `limits`.
237+
The pod above runs in the `Guaranteed` QoS class because `requests` are equal to `limits`.
238238
But the container's resource limit for the CPU resource is a fraction. It runs in
239239
the shared pool.
240240

@@ -250,7 +250,7 @@ spec:
250250
cpu: "2"
251251
```
252252

253-
This pod runs in the `Guaranteed` QoS class because only `limits` are specified
253+
The pod above runs in the `Guaranteed` QoS class because only `limits` are specified
254254
and `requests` are set equal to `limits` when not explicitly specified. And the
255255
container's resource limit for the CPU resource is an integer greater than or
256256
equal to one. The `nginx` container is granted 2 exclusive CPUs.

0 commit comments

Comments
 (0)