我可以在k9s中列出kubernetes服务吗?
默认情况下,仅显示Pod和部署。
可能是here所示,我正在使用当前的k9s版本0.7.11
最佳答案
它记录在这里:
Key Bindings
所以你必须输入:
:svc
编辑:热键 您还可以配置自定义热键。
这是我的配置文件 ~/.k9s/hotkey.yml
hotKey:
f1:
shortCut: F1
description: View pods
command: pods
f2:
shortCut: F2
description: View deployments
command: dp
f3:
shortCut: F3
description: View statefulsets
command: sts
f4:
shortCut: F4
description: View services
command: service
f5:
shortCut: F5
description: View ingresses
command: ingress
关于kubernetes - 如何在k9s中列出kubernetes服务?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56823971/