Created
February 14, 2022 12:38
-
-
Save hhcordero/793e52c2c175e9f33e3802066831ea7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl get pod -l app=app -o json | \ | |
jq -r '.items[] | \ | |
select (.status.containerStatuses != null) | \ | |
{container_status: .status.containerStatuses[], name: .metadata.name} | \ | |
select (.container_status.restartCount > <X number of restart>) | \ | |
.name' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment