K9s

From Chorke Wiki
Revision as of 01:50, 2 October 2025 by Shahed (talk | contribs) (References)
Jump to navigation Jump to search
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