forked from derailed/popeye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.krew.yaml
57 lines (55 loc) · 2.03 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: popeye
spec:
homepage: https://popeyecli.io
shortDescription: Scans your clusters for potential resource issues.
version: {{ .TagName }}
description: |
Popeye is a utility that scans live Kubernetes clusters and reports
potential issues with deployed resources and configurations.
It sanitizes your cluster based on what's deployed and not what's
sitting on disk. By scanning your cluster, it detects misconfigurations
and ensure best practices are in place thus preventing potential future
headaches. It aims at reducing the cognitive overload one faces when
operating a Kubernetes cluster in the wild. Furthermore, if your
cluster employs a metric-server, it reports potential resources
over/under allocations and attempts to warn you should your cluster
run out of capacity.
Popeye is a readonly tool, it does not alter any of your Kubernetes
resources in any way!
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
{{ addURIAndSha "https://github.com/derailed/popeye/releases/download/{{ .TagName }}/popeye_darwin_amd64.tar.gz" .TagName }}
files:
- from: popeye
to: kubectl-popeye
- from: LICENSE
to: "."
bin: kubectl-popeye
- selector:
matchLabels:
os: linux
arch: amd64
{{ addURIAndSha "https://github.com/derailed/popeye/releases/download/{{ .TagName }}/popeye_Linux_x86_64.tar.gz" .TagName }}
files:
- from: popeye
to: kubectl-popeye
- from: LICENSE
to: "."
bin: kubectl-popeye
- selector:
matchLabels:
os: windows
arch: amd64
{{ addURIAndSha "https://github.com/derailed/popeye/releases/download/{{ .TagName }}/popeye_Windows_x86_64.tar.gz" .TagName }}
files:
- from: popeye.exe
to: kubectl-popeye.exe
- from: LICENSE
to: "."
bin: kubectl-popeye.exe