Skip to content

Instantly share code, notes, and snippets.

@chmouel
Last active February 25, 2016 07:43
Show Gist options
  • Save chmouel/1ad709c3bc88c301f831 to your computer and use it in GitHub Desktop.
Save chmouel/1ad709c3bc88c301f831 to your computer and use it in GitHub Desktop.
Export all openshift 3 resources from all users and defaults, should be good for backups
#!/bin/bash
alltypes="pods,po,replicationcontrollers,rc,daemonsets,ds,services,svc,events,ev,secrets,persistentvolumes,pv,persistentvolumeclaims,pvc,limitranges,limits,resourcequotas,quota,nodes,no,namespaces,ns,componentstatuses,cs,endpoints,ep,serviceaccounts,sa,securitycontextconstraints,scc,deploymentconfigs,dc,buildconfigs,bc,builds,routes,projects,imagestreams,is,imagestreamtags,istag,policies,rolebindings,users,groups,templates,policybindings,roles,oauthclients"
oc export ${alltypes} --all-namespaces
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment