Skip to content

Commit b9f9f89

Browse files
Add kubectl krew manifest
1 parent e9c24cb commit b9f9f89

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

deploy/krew/plugin.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
apiVersion: krew.googlecontainertools.github.com/v1alpha2
2+
kind: Plugin
3+
metadata:
4+
name: kubectl-ssh-proxy
5+
spec:
6+
version: "v0.1.0"
7+
platforms:
8+
- selector:
9+
matchLabels:
10+
os: linux
11+
arch: amd64
12+
uri: https://github.com/infinite-turtles/kubectl-ssh-proxy/releases/download/v0.1.0/kubectl-ssh-proxy_linux_amd64.tar.gz
13+
sha256: ""
14+
files:
15+
- from: "./kubectl-ssh-proxy"
16+
to: "."
17+
- from: LICENSE
18+
to: "."
19+
bin: "kubectl-ssh-proxy"
20+
- selector:
21+
matchLabels:
22+
os: darwin
23+
arch: amd64
24+
uri: https://github.com/infinite-turtles/kubectl-ssh-proxy/releases/download/v0.1.0/kubectl-ssh-proxy_darwin_amd64.tar.gz
25+
sha256: ""
26+
files:
27+
- from: "./kubectl-ssh-proxy"
28+
to: "."
29+
- from: LICENSE
30+
to: "."
31+
bin: "kubectl-ssh-proxy"
32+
- selector:
33+
matchLabels:
34+
os: windows
35+
arch: amd64
36+
uri: https://github.com/infinite-turtles/kubectl-ssh-proxy/releases/download/v0.1.0/kubectl-ssh-proxy_windows_amd64.zip
37+
sha256: ""
38+
files:
39+
- from: "/kubectl-ssh-proxy.exe"
40+
to: "."
41+
- from: LICENSE
42+
to: "."
43+
bin: "kubectl-ssh-proxy.exe"
44+
shortDescription: A new plugin
45+
homepage: https://github.com/infinite-turtles/kubectl-ssh-proxy
46+
caveats: |
47+
Usage:
48+
$ kubectl kubectl-ssh-proxy
49+
50+
For additional options:
51+
$ kubectl kubectl-ssh-proxy --help
52+
or https://github.com/infinite-turtles/kubectl-ssh-proxy/blob/v0.1.0/doc/USAGE.md
53+
54+
description: |
55+
This is a new plugin

0 commit comments

Comments
 (0)