-
Notifications
You must be signed in to change notification settings - Fork 4
/
.krew.yaml
78 lines (74 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: kurt
spec:
version: {{ .TagName }}
platforms:
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/soraro/kurt/releases/download/{{ .TagName }}/kurt_linux_amd64.tar.gz" .TagName }}
files:
- from: kurt
to: .
- from: LICENSE
to: .
bin: kurt
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/soraro/kurt/releases/download/{{ .TagName }}/kurt_darwin_amd64.tar.gz" .TagName }}
files:
- from: kurt
to: .
- from: LICENSE
to: .
bin: kurt
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/soraro/kurt/releases/download/{{ .TagName }}/kurt_darwin_arm64.tar.gz" .TagName }}
files:
- from: kurt
to: .
- from: LICENSE
to: .
bin: kurt
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/soraro/kurt/releases/download/{{ .TagName }}/kurt_linux_arm64.tar.gz" .TagName }}
files:
- from: kurt
to: .
- from: LICENSE
to: .
bin: kurt
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/soraro/kurt/releases/download/{{ .TagName }}/kurt_windows_amd64.zip" .TagName }}
files:
- from: kurt.exe
to: .
- from: LICENSE
to: .
bin: kurt.exe
shortDescription: Find what's restarting and why
homepage: https://github.com/soraro/kurt
description: |
Use kurt to see pods that are restarting in your cluster and get further context to issues by grouping the results.
Top 5 results from all groupings:
kubectl kurt all
Top 5 nodes with restarting pods:
kubectl kurt nodes
All restarting pods in the test namespace:
kubectl kurt pods -c 0 -n test
Help:
kubectl kurt -h