File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ builds:
13
13
archives :
14
14
- builds :
15
15
- kubectl-tree
16
+ name_template : " {{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
16
17
wrap_in_directory : false
17
18
format : tar.gz
18
19
files :
Original file line number Diff line number Diff line change
1
+ apiVersion : krew.googlecontainertools.github.com/v1alpha2
2
+ kind : Plugin
3
+ metadata :
4
+ name : tree
5
+ spec :
6
+ version : {{ .TagName }}
7
+ homepage : https://github.com/ahmetb/kubectl-tree
8
+ shortDescription : Show a tree of object hierarchies through ownerReferences
9
+ description : |
10
+ This plugin shows sub-resources of a specified Kubernetes API object in a
11
+ tree view in the command-line. The parent-child relationship is discovered
12
+ using ownerReferences on the child object.
13
+ caveats : |
14
+ * For resources that are not in default namespace, currently you must
15
+ specify -n/--namespace explicitly (the current namespace setting is not
16
+ yet used).
17
+ platforms :
18
+ - selector :
19
+ matchLabels :
20
+ os : darwin
21
+ arch : amd64
22
+ {{addURIAndSha "https://github.com/ahmetb/kubectl-tree/releases/download/{{ .TagName }}/kubectl-tree_{{ .TagName }}_darwin_amd64.tar.gz" .TagName }}
23
+ files :
24
+ - from : " *"
25
+ to : " ."
26
+ bin : kubectl-tree
27
+ - selector :
28
+ matchLabels :
29
+ os : linux
30
+ arch : amd64
31
+ {{addURIAndSha "https://github.com/ahmetb/kubectl-tree/releases/download/{{ .TagName }}/kubectl-tree_{{ .TagName }}_linux_amd64.tar.gz" .TagName }}
32
+ files :
33
+ - from : " *"
34
+ to : " ."
35
+ bin : kubectl-tree
You can’t perform that action at this time.
0 commit comments