K9scli
Shortcuts
|
|
Sort by Column
If you want to sort any view (Pod/Services) based on some exact column - you can just press Shift + Column Initial
e.g. If you want to sort items by column Age - Just press Shift + A
- Shift-c: sorts by CPU.
- Shift-m: sorts by MEMORY.
- Shift-s: sorts by STATUS.
- Shift-n: sorts by name;
- Shift-o: sorts by node;
- Shift-i: sorts by IP address;
- Shift-a: sorts by container age;
- Shift-t: sorts by number of restarts;
- Shift-r: sorts by pod readiness;
List all available resources:
:aliases
or Ctrl-a
: list all available aliases and resources. :crd:
list all CRDs.
Filter
/<filter>
: regex filter./!<filter>
: inverse regex filter./-l <label>
: filter by labels./-f <filter>
: fuzzy match.
Choose context
:ctx
: list ctx, then select from the list.
:ctx <context>
: switch to the specified context.
Show Decrypted Secrets
Type :secrets
to list the secrets, then
- x to decrypt the secret.
- Esc to leave the decrypted display.
x
: decode a Secret.
f
: full screen. Tip: enter full screen mode before copying, to avoid in copied text.
Helm
:helm
: show helm releases.:helm NAMESPACE
: show releases in a specific namespace.
XRay View
:xray RESOURCE
, e.g.:xray deploy
.
Pulse View
:pulse
: displays general information about the Kubernetes cluster.
Show Disk Files
:dir /path
E.g. :dir /tmp
will show your /tmp
folder on local disk. One common use case: Ctrl-s
to save a yaml, then find it in :dir /tmp/k9s-screens-root
, find the file, press e to edit and a to apply.
Benchmark
k9s includes a basic HTTP load generator.
To enable it, you have to configure port forwarding in the pod. Select the pod and press SHIFT + f
, go to the port-forward menu (using the pf alias).
After selecting the port and hitting CTRL + b
, the benchmark would start. Its results are saved in /tmp
for subsequent analysis.
To change the configuration of the benchmark, create the $HOME/.k9s/bench-<my_context>.yml
file (unique for each cluster).
Check Resources with the Same Name in Different API Groups
e.g. Cluster may be found in different api groups, like cluster.x-k8s.io
or clusterregistry.k8s.io
or baremetal.cluster.gke.io
.
|
|
Use apiVersion/kind
(i.e. Group/Version/kind
) instead of just kind to check the API of a specific group.
|
|
Change log setting
Change ~/.config/k9s/config.yml
:
|
|
CPU/MEM Metrics
A small change here based on Benjamin excellent PR! We’ve added 2 new columns for pod/container views to indicate percentages of resources request/limits if set on the containers. The columns have been renamed to represent the resources requests/limits as follows:
Name | Description | Sort Keys |
---|---|---|
%CPU/R | Percentage of requested cpu | shift-x |
%MEM/R | Percentage of requested memory | shift-z |
%CPU/L | Percentage of limited cpu | ctrl-x |
%MEM/L | Percentage of limited memory | ctrl-z |
|
|
What about CPU/A and MEM/A when you see the nodes?
- CPU/A is about the CPU allocatable (unit is milli-vCPU)
- MEM/A is the memory allocatable (unit is MiB)
if you’re asking yourself like me, what a milli-vCPU is 1/1000 of (Threads x Cores) x Physical CPU = Number vCPU