Skip to content

Instantly share code, notes, and snippets.

@ohmrefresh
Created October 30, 2019 14:45
Show Gist options
  • Save ohmrefresh/d5391ec438e162fc2de13b4458ac51fd to your computer and use it in GitHub Desktop.
Save ohmrefresh/d5391ec438e162fc2de13b4458ac51fd to your computer and use it in GitHub Desktop.
[OCP] Scale down pods all deployment in namespace [Project]
for deployment in $(oc get dc -n name-space | awk '{print $1}'| awk 'NR != 1'); do oc scale dc/${deployment} --replicas=0 -n name-space ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment