我在工作期间使用k9s,当我尝试启动它时,我收到了错误消息:
Boom!! app run failed 'po' command not found.
我搜索了如何重新安装'po‘命令,但是找不到有用的信息。我试图在我的机器上重新安装xcode-select,但仍然无法工作。
我这边的k9s配置文件如下所示
k9s:
refreshRate: 2
maxConnRetry: 5
enableMouse: false
headless: false
logoless: false
crumbsless: false
readOnly: false
noIcons: false
logger:
tail: 100
buffer: 5000
sinceSeconds: 60
fullScreenLogs: false
textWrap: false
showTime: false
currentContext: xxxx/yyyy
currentCluster: xxxx/yyyy
clusters:
xxxx/yyyy:
namespace:
active: default
favorites:
- default
view:
active: po
featureGates:
nodeShell: false
shellPod:
image: busybox:1.31
command: []
args: []
namespace: default
limits:
cpu: 100m
memory: 100Mi
portForwardAddress: localhost
thresholds:
cpu:
critical: 90
warn: 70
memory:
critical: 90
warn: 70
screenDumpDir: /var/folders/rl/_xgz4l291pq2ljx1p7x8l5sm0000gn/T/k9s-screens-name
我想问题出在配置文件的那一部分。
view:
active: po
有人能帮忙吗?谢谢
发布于 2022-04-28 08:14:55
尝试以下命令:
> brew remove k9s
> rm -rf /Users/home-folder/.config/k9s
> rm -rf /Users/home-folder/Library/Application\ Support/k9s
> brew install k9s
https://stackoverflow.com/questions/72039788
复制相似问题