-
Notifications
You must be signed in to change notification settings - Fork 25
/
.krew.yaml
45 lines (45 loc) · 1.68 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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: lineage
spec:
version: {{ .TagName }}
homepage: https://github.com/tohjustin/kube-lineage
shortDescription: Display all dependent resources or resource dependencies
description: |
This plugin prints a table of dependencies or dependents of the specified
resource.
caveats: |
The tool only shows dependencies or dependents among the resources you have
access to. So for restricted users, the result may be incomplete.
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/tohjustin/kube-lineage/releases/download/{{ .TagName }}/kube-lineage_darwin_amd64.tar.gz" .TagName }}
bin: kube-lineage
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/tohjustin/kube-lineage/releases/download/{{ .TagName }}/kube-lineage_darwin_arm64.tar.gz" .TagName }}
bin: kube-lineage
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/tohjustin/kube-lineage/releases/download/{{ .TagName }}/kube-lineage_linux_amd64.tar.gz" .TagName }}
bin: kube-lineage
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/tohjustin/kube-lineage/releases/download/{{ .TagName }}/kube-lineage_linux_arm64.tar.gz" .TagName }}
bin: kube-lineage
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/tohjustin/kube-lineage/releases/download/{{ .TagName }}/kube-lineage_windows_amd64.zip" .TagName }}
bin: kube-lineage.exe