K9s: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 58: | Line 58: | ||
* [https://k9scli.io/topics/commands/ K9s » Commands] | * [https://k9scli.io/topics/commands/ K9s » Commands] | ||
* [https://www.reddit.com/r/Ubuntu/comments/17lj3s9/k9s_via_snap/ K9s » Snap » Bug] | * [https://www.reddit.com/r/Ubuntu/comments/17lj3s9/k9s_via_snap/ K9s » Snap » Bug] | ||
* [https://github.com/derailed/k9s/releases K9s » Releases] | |||
* [https://github.com/derailed/k9s/tree/master/plugins K9s » Plugins] | * [https://github.com/derailed/k9s/tree/master/plugins K9s » Plugins] | ||
* [https://k9scli.io/topics/install/ K9s » Install] | * [https://k9scli.io/topics/install/ K9s » Install] | ||
Revision as of 01:50, 2 October 2025
brew install derailed/k9s/k9s
brew uninstall derailed/k9s/k9s
|
sudo snap install k9s
sudo snap remove k9s
|
cat <<-'EXE'|sudo bash
K9S_PLATFORM="$(uname -s)_$(dpkg --print-architecture)"
K9S_BINARY="$(echo "k9s_${K9S_PLATFORM}.deb"|tr '[:upper:]' '[:lower:]')"
K9S_VERSION="$(curl -s https://api.github.com/repos/derailed/k9s/releases/latest | grep -Po '"tag_name": "v\K[^"]*')"
curl -fsSLo "${K9S_BINARY}" "https://github.com/derailed/k9s/releases/download/v${K9S_VERSION}/${K9S_BINARY}"
dpkg -i "${K9S_BINARY}"
rm "${K9S_BINARY}"
apt-get install -f
EXE
| |
Playground
k9s help
k9s info
|
||
|
| ||
References
|
| ||