Created
September 13, 2017 01:58
-
-
Save sjenning/8bfd2b28550c8bd86321bb3be30a25f0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| for i in $(crioctl pod list | grep ^ID: | cut -f2 -d' ') | |
| do | |
| crioctl pod stop --id $i | |
| crioctl pod remove --id $i | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment