所有 k9s 标题的含义是什么?- 有些是显而易见的,有些则不太明显

Ala*_*son 18 kubernetes

特别是%CPU/R、%CPU/L、%MEM/R 和%MEM/L。当我这样做时,内存和 CPU(非百分比)列的单位是什么?

Ala*_*lan 35

它们在 K9s 发行说明中进行了解释

  • %CPU/R 请求的 cpu 百分比
  • %MEM/R 请求内存的百分比
  • %CPU/L 限制cpu的百分比
  • %MEM/L 有限内存的百分比

  • 这是标题的完美答案。上面@Nathan 的澄清和链接填补了其余部分。我很确定 L 和 R 不是左和右;-) (4认同)

Arc*_*rco 9

https://gist.github.com/BigNerd/35a56e411df4c90f7d6dee1d33dbd0a5这里,作者解释了更多。我在这里复制他的内容:

View: Pods(<namespace>)[number of pods listed]

NAME      pod name
READY     number of pods in ready state / number of pods to be in ready state
RESTARTS  number of times the pod has been restarted so far
STATUS    state of the pod life cycle, such as Running | ... | Completed
CPU       current CPU usage, unit is milli-vCPU
MEM       current main memory usage, unit is MiB
%CPU/R    current CPU usage as a percentage of what has been requested by the pod
%MEM/R    current main memory usage as a percentage of what has been requested by the pod
%CPU/L    current CPU usage as a percentage of the pod's limit (it cannot go beyond its limit)
%MEM/L    current main memory usage as a percentage of the pod's limit (it cannot go beyond its limit)
IP        IP address of the pod
NODE      name of the node the pod is running on
AGE       age of the pod, units are indicated (s = seconds, m = minutes, h = hours, d = days)
Run Code Online (Sandbox Code Playgroud)

他的主旨应该拥有一颗星星。