查看kubernetes pod的最大使用量
Check the maximum usage of kubernetes pod
我想查看 kubernetes Pod 的最大值和平均值。我试图找到它,但无法获得任何相关信息。另外,我查看了 Lens(第三方软件),但只获取当前使用情况,它只显示过去 1 小时的使用情况和限制。
如何找到Pod的最大使用量?
kubectl describe quota
或在不同的命名空间内:
kubectl describe quota --namespace=<your-namespace>
如果您没有在配置创建 yaml 文件中指定资源限制,它将默认采用这些值:
Create the Pod. The output shows that the Pod's container has a memory
request of 256 MiB and a memory limit of 512 MiB. These are the
default values specified by the LimitRange
您有更多信息here
如果您想手动指定 pods 限制,您有一篇文章 here。
PS:如果您在 Lens 中启用 promotheus,您可以可视化不同的指标(pods cpu、内存、网络和文件系统的使用和限制)
我想查看 kubernetes Pod 的最大值和平均值。我试图找到它,但无法获得任何相关信息。另外,我查看了 Lens(第三方软件),但只获取当前使用情况,它只显示过去 1 小时的使用情况和限制。
如何找到Pod的最大使用量?
kubectl describe quota
或在不同的命名空间内:
kubectl describe quota --namespace=<your-namespace>
如果您没有在配置创建 yaml 文件中指定资源限制,它将默认采用这些值:
Create the Pod. The output shows that the Pod's container has a memory request of 256 MiB and a memory limit of 512 MiB. These are the default values specified by the LimitRange
您有更多信息here
如果您想手动指定 pods 限制,您有一篇文章 here。
PS:如果您在 Lens 中启用 promotheus,您可以可视化不同的指标(pods cpu、内存、网络和文件系统的使用和限制)