We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5039e8 commit 7d0542fCopy full SHA for 7d0542f
content/en/docs/tasks/configure-pod-container/quality-service-pod.md
@@ -231,12 +231,19 @@ status:
231
qosClass: Burstable
232
```
233
234
-Delete your Pod:
+## Retrieve the QoS class for a Pod
235
236
-```shell
237
-kubectl delete pod qos-demo-4 --namespace=qos-example
+Rather than see all the fields, you can view just the field you need:
+
238
+```bash
239
+kubectl --namespace=qos-example get pod qos-demo-4 -o jsonpath='{ .status.qosClass}{"\n"}'
240
241
242
+```none
243
+Burstable
244
+```
245
246
247
## Clean up
248
249
Delete your namespace:
0 commit comments