forked from kubernetes-sigs/krew-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodify-secret.yaml
43 lines (40 loc) · 1.4 KB
/
modify-secret.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: modify-secret
spec:
version: "v0.0.36"
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
uri: https://github.com/rajatjindal/kubectl-modify-secret/releases/download/v0.0.36/kubectl-modify-secret_v0.0.36_darwin_amd64.tar.gz
sha256: 5332deabb0416351263c577be20b859ab07121dcda7f3c7966d1825247d5c62a
files:
- from: "*"
to: "."
bin: kubectl-modify-secret
- selector:
matchLabels:
os: linux
arch: amd64
uri: https://github.com/rajatjindal/kubectl-modify-secret/releases/download/v0.0.36/kubectl-modify-secret_v0.0.36_linux_amd64.tar.gz
sha256: fa4e811bf78526d15081bc307f329a9ec7f31ec83d6247ec32a3f519e0c6f3c7
files:
- from: "*"
to: "."
bin: kubectl-modify-secret
shortDescription: modify secret with implicit base64 translations
caveats: |
Usage:
kubectl modify-secret secret-name -n kube-system
Read the documentation at:
https://github.com/rajatjindal/kubectl-modify-secret
description: |
Usage:
kubectl modify-secret secret-name -n kube-system
This plugin fetches the given secret manifest from the cluster, decodes
the payload, opens an editor to make changes, and applies the modified
manifest when done.
homepage: https://github.com/rajatjindal/kubectl-modify-secret