Kubernetes secrets [https://kubernetes.io/docs/concepts/configuration/secret/]
are only accessible in the namespace they're created in. A quick one-liner to
copy a secret from namespaceA to namespaceB is:
kubectl get secrets <secret_name> --export --namespace=<namespaceA>