kubectl copy secret to new name code example
Example 1: kubectl copy secret namespace
kubectl get secret <secrt_name> --namespace=<namespace1_name> --export -o yaml |\
kubectl apply --namespace=<namespace2_name> -f -
Example 2: kubectl edit secret
kubectl get secret mysecret -o json | jq '.data["foo"]="YmFy"' | kubectl apply -f -