Horje
copy secret from one namespace to another Code Example
kubectl copy secret namespace
kubectl get secret <secrt_name> --namespace=<namespace1_name> --export -o yaml |\
    kubectl apply --namespace=<namespace2_name> -f -
copy secret from one namespace to another
kubectl get secret <secret-name> -n <source-namespace> -o yaml \
| sed s/"namespace: <source-namespace>"/"namespace: <destination-namespace>"/\
| kubectl apply -n <destination-namespace> -f -




Shell

Related
create a new branch and publish gitub Code Example create a new branch and publish gitub Code Example
ubuntu server 20.04 list only user names Code Example ubuntu server 20.04 list only user names Code Example
mp4 to mp3 converter bat ffmpeg Code Example mp4 to mp3 converter bat ffmpeg Code Example
how to mount device linux Code Example how to mount device linux Code Example
linux display services listening for connections and ports they are listening on Code Example linux display services listening for connections and ports they are listening on Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9