@@ -165,7 +165,7 @@ spec:
165
165
image : nginx
166
166
` ` `
167
167
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
169
169
` limits` are specified. It runs in the shared pool.
170
170
171
171
` ` ` yaml
@@ -180,7 +180,7 @@ spec:
180
180
memory: "100Mi"
181
181
` ` `
182
182
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
184
184
equal `limits` and the `cpu` quantity is not specified. It runs in the shared
185
185
pool.
186
186
@@ -198,7 +198,7 @@ spec:
198
198
cpu: "1"
199
199
` ` `
200
200
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
202
202
equal `limits`. It runs in the shared pool.
203
203
204
204
` ` ` yaml
@@ -215,7 +215,7 @@ spec:
215
215
cpu: "2"
216
216
` ` `
217
217
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`.
219
219
And the container's resource limit for the CPU resource is an integer greater than
220
220
or equal to one. The `nginx` container is granted 2 exclusive CPUs.
221
221
@@ -234,7 +234,7 @@ spec:
234
234
cpu: "1.5"
235
235
` ` `
236
236
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`.
238
238
But the container's resource limit for the CPU resource is a fraction. It runs in
239
239
the shared pool.
240
240
@@ -250,7 +250,7 @@ spec:
250
250
cpu: "2"
251
251
` ` `
252
252
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
254
254
and `requests` are set equal to `limits` when not explicitly specified. And the
255
255
container's resource limit for the CPU resource is an integer greater than or
256
256
equal to one. The `nginx` container is granted 2 exclusive CPUs.
0 commit comments