I can sort my Kubernetes pods by name using:
kubectl get pods --sort-by=.metadata.name
How can I sort them (or other resoures) by age using kubectl
?
I can sort my Kubernetes pods by name using:
kubectl get pods --sort-by=.metadata.name
How can I sort them (or other resoures) by age using kubectl
?
Pods have status, which you can use to find out startTime.
I guess something like
kubectl get po --sort-by=.status.startTime
should work.You could also try:
kubectl get po --sort-by='{.firstTimestamp}'
.kubectl get pods --sort-by=.metadata.creationTimestamp
Thanks @chrisAlso apparently in 1.7 release sort-by is broken.
https://github.com/kubernetes/kubectl/issues/43
Here's the bug report : https://github.com/kubernetes/kubernetes/issues/48602
Here's the PR: https://github.com/kubernetes/kubernetes/pull/48659/files
If you want to sort them in reverse order based on the age:
I have created KUBESORT exactly for these kinds of sorting purposes.
Pls have a try,