-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.krew.yaml
111 lines (102 loc) · 3.33 KB
/
.krew.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: passman
spec:
version: {{ .TagName }}
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-darwin-amd64.zip" .TagName }}
bin: "./kubectl-passman"
files:
- from: kubectl-passman-darwin-amd64
to: kubectl-passman
- from: LICENSE
to: .
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-darwin-arm64.zip" .TagName }}
bin: "./kubectl-passman"
files:
- from: kubectl-passman-darwin-arm64
to: kubectl-passman
- from: LICENSE
to: .
- selector:
matchLabels:
os: linux
arch: arm
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-linux-arm.zip" .TagName }}
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-arm
to: kubectl-passman
- from: LICENSE
to: .
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-linux-arm64.zip" .TagName }}
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-arm64
to: kubectl-passman
- from: LICENSE
to: .
- selector:
matchLabels:
os: linux
arch: 386
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-linux-386.zip" .TagName }}
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-386
to: kubectl-passman
- from: LICENSE
to: .
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-linux-amd64.zip" .TagName }}
bin: "./kubectl-passman"
files:
- from: kubectl-passman-linux-amd64
to: kubectl-passman
- from: LICENSE
to: .
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-windows-amd64.zip" .TagName }}
bin: "./kubectl-passman.exe"
files:
- from: kubectl-passman-windows-amd64.exe
to: kubectl-passman.exe
- from: LICENSE
to: .
- selector:
matchLabels:
os: windows
arch: 386
{{addURIAndSha "https://github.com/chrisns/kubectl-passman/releases/download/{{ .TagName }}/kubectl-passman-windows-386.zip" .TagName }}
bin: "./kubectl-passman.exe"
files:
- from: kubectl-passman-windows-386.exe
to: kubectl-passman.exe
- from: LICENSE
to: .
shortDescription: Store kubeconfig credentials in keychains or password managers
homepage: https://github.com/chrisns/kubectl-passman
caveats: |
This plugin needs a usable keychain or password manager
See usage docs https://github.com/chrisns/kubectl-passman
description: |
An effective way to keep your credentials somewhere better than in plain text