Explain how to see QoS class for a Pod
parent
d5039e8c67
commit
7d0542fd53
|
@ -231,12 +231,19 @@ status:
|
|||
qosClass: Burstable
|
||||
```
|
||||
|
||||
Delete your Pod:
|
||||
## Retrieve the QoS class for a Pod
|
||||
|
||||
```shell
|
||||
kubectl delete pod qos-demo-4 --namespace=qos-example
|
||||
Rather than see all the fields, you can view just the field you need:
|
||||
|
||||
```bash
|
||||
kubectl --namespace=qos-example get pod qos-demo-4 -o jsonpath='{ .status.qosClass}{"\n"}'
|
||||
```
|
||||
|
||||
```none
|
||||
Burstable
|
||||
```
|
||||
|
||||
|
||||
## Clean up
|
||||
|
||||
Delete your namespace:
|
||||
|
|
Loading…
Reference in New Issue