阅读量:0
要查看Kubernetes集群的资源使用情况,可以使用以下命令:
查看集群中所有节点的资源使用情况:
kubectl top nodes
查看集群中所有Pod的资源使用情况:
kubectl top pods
查看集群中指定命名空间的所有Pod的资源使用情况:
kubectl top pods -n <namespace>
查看集群中指定Pod的资源使用情况:
kubectl top pod <pod-name> -n <namespace>
这些命令将显示每个节点或Pod的CPU和内存使用情况。可以使用--sort-by
参数对结果进行排序,默认按CPU使用量排序,可以选择排序字段为cpu
或memory
。