1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Kubernetes内のSecretsを修正する

Last updated at Posted at 2024-03-01

kubectlで取得したSecretsのConfig設定が暗号化されている

以下のコマンドを打つとSecretsの詳細が出ますが、エンコードされているため詳細を見ることが出来ない。

kubectl get secret <シークレット名> -n <namespace名>
kubectl describe secret <シークレット名> -n <namespace名>
kubectl edit secret <シークレット名> -n <namespace名>

解決策

base64 encode / decodeを行ってくれるサイトを検索。
→decodeを行って設定内容を把握。
→修正したい箇所に修正を入れ、再度encodeし、コピーして控えておく
→以下コマンドを打ちConfig内容をencodeされた内容に差し替える

kubectl edit secret <シークレット名> -n <namespace名>
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?