Skip to content
See what owns what

See what owns what

Ownership is not in kubectl’s table output. A Deployment owns a ReplicaSet owns Pods, and finding that chain by hand means reading metadata.ownerReferences out of JSON.

kx tree

graphs every workload in the current namespace, from controllers down to containers. kx tree <index> graphs one.

kx tree 1
kx tree -n prod
kx tree -A         # every namespace, as a forest

A Namespace index graphs that namespace — so kx get ns then kx tree 3 works.

The nodes are indexed too

By default kx tree numbers the nodes it draws and saves them as the current listing, so the tree is a way to select things and not only to look at them:

kx tree          # 1  api (Deployment)
                 # 2   └─ api-7d8f (ReplicaSet)
                 # 3       └─ api-7d8f-p4k2 (Pod)
kx logs 3

With -A, nodes are indexed continuously across the whole forest.

--no-index skips the numbering and leaves your existing listing alone — useful when you want to look at the structure without losing the indexes you were working with.

In a browser

kx tree --html

renders the graph as a collapsible tree, indexed like the terminal version.

kx tree --html dashboard in the github-dark theme kx tree --html dashboard in the dracula theme kx tree --html dashboard in the nord theme kx tree --html dashboard in the gruvbox theme kx tree --html dashboard in the solarized-dark theme kx tree --html dashboard in the catppuccin-mocha theme kx tree --html dashboard in the tokyo-night theme kx tree --html dashboard in the rose-pine theme kx tree --html dashboard in the mono theme kx tree --html dashboard in the light theme