Last active
January 18, 2024 04:56
-
-
Save yankay/f6aae3f709bb33deb1111fd39d7b9505 to your computer and use it in GitHub Desktop.
快速安装 k9s
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /tmp | |
| export K9S_VERSION=$(curl -s https://api.github.com/repos/derailed/k9s/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' ) | |
| wget https://files.m.daocloud.io/github.com/derailed/k9s/releases/download/${K9S_VERSION}/k9s_Linux_amd64.tar.gz | |
| # wget https://github.com/derailed/k9s/releases/download/${K9S_VERSION}/k9s_Linux_amd64.tar.gz | |
| tar -zxvf k9s_Linux_amd64.tar.gz | |
| chmod +x k9s | |
| mv k9s /usr/bin/k9s | |
| k9s version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment