kubernetes get secret from different namespace code example
Example: kubectl copy secret namespace
kubectl get secret <secrt_name> --namespace=<namespace1_name> --export -o yaml |\
kubectl apply --namespace=<namespace2_name> -f -
kubectl get secret <secrt_name> --namespace=<namespace1_name> --export -o yaml |\
kubectl apply --namespace=<namespace2_name> -f -