Skip to content

Instantly share code, notes, and snippets.

@pizycki
Created April 30, 2021 13:51
Show Gist options
  • Save pizycki/b01489c98ff853e45bee4263003db95e to your computer and use it in GitHub Desktop.
Save pizycki/b01489c98ff853e45bee4263003db95e to your computer and use it in GitHub Desktop.
Restart all unhealthy k8s deployments
kubectl get deployments -n app-team -o json `
| ConvertFrom-Json `
| % { $_.items } `
| ? { ($_.status.conditions | ? { $_.type -eq "Available" }).Status -eq "False" }
| % { $_.metadata.name }
| % { kubectl rollout restart deployments/$_ -n app-team }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment