-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy path.krew.yaml
66 lines (64 loc) · 2.14 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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: cost
spec:
version: {{ .TagName }}
shortDescription: View cluster cost information
description: |
Uses Kubecost's API to gather and format cluster cost information broken
down by various aggregations like namespace, deployment, and label.
Kubecost is a cluster-side daemon that tracks the real cost of Kubernetes
resources by combining resource utilization monitoring with your provider's
cost data. Kubecost support GCP/GKE, AWS/EKS, Azure/AKS, and custom
(including on-prem) "providers" via user-specified pricing sheets.
Website: https://www.kubecost.com/
caveats: |
Requires Kubecost (a cluster-side daemon) to be installed in your cluster.
See https://www.kubecost.com/install for installation instructions.
homepage: https://github.com/kubecost/kubectl-cost
platforms:
- bin: kubectl-cost
{{ addURIAndSha "https://github.com/kubecost/kubectl-cost/releases/download/{{ .TagName }}/kubectl-cost-darwin-amd64.tar.gz" .TagName }}
files:
- from: kubectl-cost
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: darwin
arch: amd64
- bin: kubectl-cost
{{ addURIAndSha "https://github.com/kubecost/kubectl-cost/releases/download/{{ .TagName }}/kubectl-cost-darwin-arm64.tar.gz" .TagName }}
files:
- from: kubectl-cost
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: darwin
arch: arm64
- bin: kubectl-cost
{{ addURIAndSha "https://github.com/kubecost/kubectl-cost/releases/download/{{ .TagName }}/kubectl-cost-linux-amd64.tar.gz" .TagName }}
files:
- from: kubectl-cost
to: .
- from: LICENSE
to: .
selector:
matchLabels:
os: linux
arch: amd64
- bin: kubectl-cost.exe
{{ addURIAndSha "https://github.com/kubecost/kubectl-cost/releases/download/{{ .TagName }}/kubectl-cost-windows-amd64.tar.gz" .TagName }}
files:
- from: kubectl-cost
to: kubectl-cost.exe
- from: LICENSE
to: .
selector:
matchLabels:
os: windows
arch: amd64