Skip to content

Instantly share code, notes, and snippets.

@subinamathew
Last active July 3, 2019 12:53
Show Gist options
  • Save subinamathew/04f8fd12476ccee19b4c110e37701d75 to your computer and use it in GitHub Desktop.
Save subinamathew/04f8fd12476ccee19b4c110e37701d75 to your computer and use it in GitHub Desktop.
Stop all Cloud foundry apps and Delete all cloud foundry apps
*STOP ALL APPS*
cf apps | grep started | awk '{print $1}{system("cf sp " $1)}'
*REMOVE ALL APPS*
cf apps | grep stopped | awk '{print $1}{system("cf d -f -r " $1)}'
*CONNECT APPS*
cf add-network-policy frontend --destination-app backend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment