-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.krew.yml
47 lines (47 loc) · 1.93 KB
/
.krew.yml
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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: graph
spec:
version: {{ .TagName }}
homepage: https://github.com/steveteuber/kubectl-graph
shortDescription: Visualize Kubernetes resources and relationships.
description: |
This plugin generates a visual representation of Kubernetes resources and
relationships. The graph is outputted in AQL, CQL or DOT format which can
be used by ArangoDB, Neo4j or Graphviz.
caveats: |
This plugin requires Graphviz or Neo4j to visualize the dependency graph.
Please see the quickstart guide for more information:
https://github.com/steveteuber/kubectl-graph#quickstart
platforms:
- bin: kubectl-graph
{{ addURIAndSha "https://github.com/steveteuber/kubectl-graph/releases/download/{{ .TagName }}/kubectl-graph_{{ .TagName }}_darwin_amd64.tar.gz" .TagName }}
selector:
matchLabels:
os: darwin
arch: amd64
- bin: kubectl-graph
{{ addURIAndSha "https://github.com/steveteuber/kubectl-graph/releases/download/{{ .TagName }}/kubectl-graph_{{ .TagName }}_darwin_arm64.tar.gz" .TagName }}
selector:
matchLabels:
os: darwin
arch: arm64
- bin: kubectl-graph
{{ addURIAndSha "https://github.com/steveteuber/kubectl-graph/releases/download/{{ .TagName }}/kubectl-graph_{{ .TagName }}_linux_amd64.tar.gz" .TagName }}
selector:
matchLabels:
os: linux
arch: amd64
- bin: kubectl-graph
{{ addURIAndSha "https://github.com/steveteuber/kubectl-graph/releases/download/{{ .TagName }}/kubectl-graph_{{ .TagName }}_linux_arm64.tar.gz" .TagName }}
selector:
matchLabels:
os: linux
arch: arm64
- bin: kubectl-graph.exe
{{ addURIAndSha "https://github.com/steveteuber/kubectl-graph/releases/download/{{ .TagName }}/kubectl-graph_{{ .TagName }}_windows_amd64.zip" .TagName }}
selector:
matchLabels:
os: windows
arch: amd64