forked from yahoo/kubectl-flame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.krew.yaml
57 lines (57 loc) · 1.93 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
46
47
48
49
50
51
52
53
54
55
56
57
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: flame
spec:
homepage: https://github.com/VerizonMedia/kubectl-flame
shortDescription: Generate CPU flame graphs from pods
version: {{ .TagName }}
description: |
Generate CPU flame graphs without restarting pods and with low overhead.
caveats: |
Currently supported languages: Go, Java (any JVM based language), Python, Ruby, and NodeJS.
platforms:
- {{addURIAndSha "https://github.com/VerizonMedia/kubectl-flame/releases/download/{{ .TagName }}/kubectl-flame_{{ .TagName }}_darwin_x86_64.tar.gz" .TagName | indent 6 }}
bin: kubectl-flame
files:
- from: kubectl-flame
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: darwin
arch: amd64
- {{addURIAndSha "https://github.com/VerizonMedia/kubectl-flame/releases/download/{{ .TagName }}/kubectl-flame_{{ .TagName }}_linux_x86_64.tar.gz" .TagName | indent 6 }}
bin: kubectl-flame
files:
- from: kubectl-flame
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: linux
arch: amd64
- {{addURIAndSha "https://github.com/VerizonMedia/kubectl-flame/releases/download/{{ .TagName }}/kubectl-flame_{{ .TagName }}_linux_arm64.tar.gz" .TagName | indent 6 }}
bin: kubectl-flame
files:
- from: kubectl-flame
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: linux
arch: arm64
- {{addURIAndSha "https://github.com/VerizonMedia/kubectl-flame/releases/download/{{ .TagName }}/kubectl-flame_{{ .TagName }}_windows_x86_64.zip" .TagName | indent 6 }}
bin: kubectl-flame.exe
files:
- from: kubectl-flame.exe
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: windows
arch: amd64