Skip to content

Instantly share code, notes, and snippets.

@stewartshea
Created August 31, 2017 19:55
Show Gist options
  • Save stewartshea/0178c1f473ef1a205c6d2f3ccbaf5888 to your computer and use it in GitHub Desktop.
Save stewartshea/0178c1f473ef1a205c6d2f3ccbaf5888 to your computer and use it in GitHub Desktop.
OpenShift oneliner to update all image streams
for x in $(oc get is -n openshift | awk 'NR>1 {print $1}'); do oc import-image $x; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment