K9s: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{|
{|class='wikitable' style='width:100%;margin:-11px 0 6px 0'
|valign='top'|
|valign='top' style='width:50%'|
<syntaxhighlight lang="bash">
<syntaxhighlight style='margin:3px 0' lang='bash'>
brew install  derailed/k9s/k9s
brew install  derailed/k9s/k9s
brew uninstall derailed/k9s/k9s
brew uninstall derailed/k9s/k9s
</syntaxhighlight>
</syntaxhighlight>


|valign='top'|
|valign='top' style='width:50%'|
<syntaxhighlight lang="bash">
<syntaxhighlight style='margin:3px 0' lang='bash'>
sudo snap install k9s
sudo snap install k9s
sudo snap remove  k9s
sudo snap remove  k9s
Line 14: Line 14:
|-
|-
|valign='top' colspan='2'|
|valign='top' colspan='2'|
<syntaxhighlight lang="bash">
<syntaxhighlight style='margin:3px 0' lang='bash'>
cat <<-'EXE'|sudo bash
cat <<-'EXE'|sudo bash
K9S_PLATFORM="$(uname -s)_$(dpkg --print-architecture)"
K9S_PLATFORM="$(uname -s)_$(dpkg --print-architecture)"
Line 28: Line 28:


==Playground==
==Playground==
{|
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
| valign="top" |
!scope='col' style='text-align:left' colspan='3'|
<syntaxhighlight lang="bash">
Playground
|-
|valign='top' style='width:34%'|
<syntaxhighlight style='margin:3px 0' lang='bash'>
k9s help
k9s help
k9s info
k9s info
</syntaxhighlight>
</syntaxhighlight>


| valign="top" |
|valign='top' style='width:33%'|


| valign="top" |
|valign='top' style='width:33%'|
 
|-
| colspan="3" |
----
|-
| valign="top" |
 
| valign="top" |
 
| valign="top" |


|}
|}


== References ==
==References==
{|
{|class='wikitable mw-collapsible' style='width:100%;margin:3px 0'
| valign="top" |
!scope='col' style='text-align:left' colspan='3'|
References
|-
|valign='top' style='width:34%'|
* [https://askubuntu.com/questions/1477547/ K9s » Install On Ubuntu]
* [https://askubuntu.com/questions/1477547/ K9s » Install On Ubuntu]
* [https://www.hackingnote.com/en/cheatsheets/k9s/ K9s » Cheatsheet]
* [https://www.hackingnote.com/en/cheatsheets/k9s/ K9s » Cheatsheet]
Line 64: Line 60:
* [https://k9scli.io/ K9s]
* [https://k9scli.io/ K9s]


| valign="top" |
|valign='top' style='width:33%'|


| valign="top" |
|valign='top' style='width:33%'|


|-
|-
| colspan="3" |
|valign='top'|
----
|-
| valign="top" |
* [[Google Cloud CLI]]
* [[Google Cloud CLI]]
* [[Linux Containers]]
* [[Linux Containers]]
Line 84: Line 77:
* [[K8s]]
* [[K8s]]


| valign="top" |
|valign='top'|
* [https://serverfault.com/questions/283129/ SSH » Connection Hang Forever]
* [https://serverfault.com/questions/283129/ SSH » Connection Hang Forever]
* [[Lazy Docker]]
* [[Lazy Docker]]
Line 94: Line 87:
* [[Snap]]
* [[Snap]]


| valign="top" |
|valign='top'|


|}
|}

Revision as of 07:27, 3 January 2026

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

Playground

k9s help
k9s info

References

References