Skip to content

Instantly share code, notes, and snippets.

@yuriburger
Last active May 10, 2019 07:31
Show Gist options
  • Save yuriburger/ecb76d11c22451ef5ea5abf942e89250 to your computer and use it in GitHub Desktop.
Save yuriburger/ecb76d11c22451ef5ea5abf942e89250 to your computer and use it in GitHub Desktop.
[kill all apps] Kill all "specific" kubernetes pods #kubernetes
// vim: syntax=bash
// All pods with "application" in the name
for app in `kgp|grep application|awk '{print $1;}'`; do kdelp $app; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment