[kubernetes] Secret 복제

Donghyun Kim·2023년 11월 6일
0

secret yaml 복제

kubectl get secret your-tls-secret -n your-namespace -o yaml > tls-secret.yaml

여기서 your-tls-secret는 복제하려는 TLS Secret의 이름이고, your-namespace는 Secret이 있는 네임스페이스입니다.

namespace간 secret 복제

SECRET=mysecret
NS1=ns1
NS2=ns2
#kubectl get secret $SECRET --namespace=$NS1 --export -o yaml | kubectl apply --namespace=$NS2 -f -
kubectl get secret $SECRET --namespace=$NS1 -oyaml | grep -v namespace | kubectl apply --namespace=$NS2 -f -
profile
"Hello World"

0개의 댓글