Skip to content

Instantly share code, notes, and snippets.

@miclip
Created July 15, 2020 20:42
Show Gist options
  • Save miclip/46a15bd276010102fc06d034410475df to your computer and use it in GitHub Desktop.
Save miclip/46a15bd276010102fc06d034410475df to your computer and use it in GitHub Desktop.
bosh cancel all queued tasks
for row in $(bosh tasks --json | jq -r '.Tables[].Rows[] | select(.state=="queued").id'); do bosh cancel-task $row -n; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment