Notes to Self

Alex Sokolsky's Notes on Computers and Programming

K9s

Sources:

Installation

On mac:

brew install k9s

On Linux (if you do not mind an old version):

sudo snap install k9s

Important directories

Run k9s info for location of important directories, e.g. logs.

Configuration Files

Hotkey config:

hotkey.yml

hotKey:
  f1:
    shortCut: F1
    description: View pods
    command: pods
  f2:
    shortCut: F2
    description: View deployments
    command: dp
  f3:
    shortCut: F3
    description: View statefulsets
    command: sts
  f4:
    shortCut: F4
    description: View services
    command: service
  f5:
    shortCut: F5
    description: View ingresses
    command: ingress

More

https://www.hackingnote.com/en/cheatsheets/k9s/