Skip to content

Instantly share code, notes, and snippets.

@andor-pierdelacabeza
Created September 1, 2017 11:41
Show Gist options
  • Save andor-pierdelacabeza/61387fa99165a156c4642dde4c6c7723 to your computer and use it in GitHub Desktop.
Save andor-pierdelacabeza/61387fa99165a156c4642dde4c6c7723 to your computer and use it in GitHub Desktop.
migrate k8s secret from one namespace to other
kubectl --namespace staging get secret credentials -o json|jq '.metadata.namespace = "production"'|kubectl create -f -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment