What is K9s?
K9s provides a terminal UI to interact with your Kubernetes clusters. The aim of this project is to make it easier to navigate, observe and manage your applications in the wild. K9s continually watches Kubernetes for changes and offers subsequent commands to interact with your observed resources.
How to install k9s on MAC OS?
1 2 3 4 5 |
## Using homebrew brew install k9s ## Using MacPorts sudo port install k9s |
How to install k9s on Windows OS?
1 2 3 4 5 |
## Using scoop scoop install k9s ## Using chocolety choco install k9s |
How to install k9s on openSUSE Linux OS?
1 2 |
## Using zypper zypper install k9s |
How to install k9s on Arch Linux OS?
1 2 |
## Using pacman pacman -S k9s |
Build k9s from source (any OS):
1 2 3 4 5 6 7 |
## Install go - https://go.dev/doc/install ## Clone the source code git clone https://github.com/derailed/k9s.git && cd k9s ## Build k9s from source make build && ./execs/k9s |
Validate k9s installation:
1 2 3 4 |
# List all available CLI options k9s help ## if returns any error, then installation was not successfull! |
To get more details on k9s, please refer https://github.com/derailed/k9s