Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanlewis/0f4d7456b37d18d59f007910ced6c1de to your computer and use it in GitHub Desktop.
Save ryanlewis/0f4d7456b37d18d59f007910ced6c1de to your computer and use it in GitHub Desktop.
Copying kubernetes resources accross namespaces
kubectl get rs,secrets -o json --namespace old | jq '.items[].metadata.namespace = "new"' | kubectl create-f -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment