Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ejamesc/db97a1399712423bf6dbe9fa985750c6 to your computer and use it in GitHub Desktop.
Save ejamesc/db97a1399712423bf6dbe9fa985750c6 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