-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.krew.yaml
39 lines (39 loc) · 1.4 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
# Krew Manifest
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: browse-pvc
spec:
version: "{{ .TagName }}"
homepage: https://github.com/clbx/kubectl-browse-pvc
shortDescription: "Browse PVC contents from the command line."
description: "Browse PVCs from the command line. Creates a job thats binds an unbound PVC and execs into it."
platforms:
# macOS ARM
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/clbx/kubectl-browse-pvc/releases/download/{{ .TagName }}/kubectl-browse-pvc-darwin-arm.zip" .TagName }}
bin: kubectl-browse-pvc
# macOS x86_64
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/clbx/kubectl-browse-pvc/releases/download/{{ .TagName }}/kubectl-browse-pvc-darwin-x86_64.zip" .TagName }}
bin: kubectl-browse-pvc
# linux x86_64
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/clbx/kubectl-browse-pvc/releases/download/{{ .TagName }}/kubectl-browse-pvc-linux-x86_64.zip" .TagName }}
bin: kubectl-browse-pvc
# linux ARM
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/clbx/kubectl-browse-pvc/releases/download/{{ .TagName }}/kubectl-browse-pvc-linux-arm.zip" .TagName }}
bin: kubectl-browse-pvc