Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to `kubectl get all` in k9s? [closed]

Instead of navigating a namespace via e.g. :service, then :pod etc, I would like to see everything that's in the namespace in a single view. As if you would type kubectl -n argocd get all.

Can't find the info in the docs. Is this even possible?

like image 404
ss1 Avatar asked Nov 24 '25 04:11

ss1


1 Answers

As per Mikolaj S. answer, there is now a feature called workloads that displays something similar to kubectl get all (thread on github)

To use it, just type :workloads to view all namespace's resources or :workloads your-namespace to filter all resources from a specific namespace.

k9s workloads view

The only drawback is that this view cannot display CRDs, so to view those you'll still need to switch between them.

like image 83
Thiago Monteiro de Paula Avatar answered Nov 26 '25 18:11

Thiago Monteiro de Paula