-
Notifications
You must be signed in to change notification settings - Fork 9
/
.krew.yaml
35 lines (35 loc) · 1.39 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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: kluster-capacity
spec:
version: {{ .TagName }}
homepage: https://github.com/k-cloud-labs/kluster-capacity
shortDescription: Scheduler simulation for capacity analysis.
description: |
A simple CLI provide cluster capacity analysis with scheduler simulation.
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
bin: kluster-capacity
{{addURIAndSha "https://github.com/k-cloud-labs/kluster-capacity/releases/download/{{ .TagName }}/kluster-capacity_{{ .TagName }}_darwin_x86_64.tar.gz" .TagName }}
- selector:
matchLabels:
os: darwin
arch: arm64
bin: kluster-capacity
{{addURIAndSha "https://github.com/k-cloud-labs/kluster-capacity/releases/download/{{ .TagName }}/kluster-capacity_{{ .TagName }}_darwin_arm64.tar.gz" .TagName }}
- selector:
matchLabels:
os: linux
arch: amd64
bin: kluster-capacity
{{addURIAndSha "https://github.com/k-cloud-labs/kluster-capacity/releases/download/{{ .TagName }}/kluster-capacity_{{ .TagName }}_linux_x86_64.tar.gz" .TagName }}
- selector:
matchLabels:
os: linux
arch: arm64
bin: kluster-capacity
{{addURIAndSha "https://github.com/k-cloud-labs/kluster-capacity/releases/download/{{ .TagName }}/kluster-capacity_{{ .TagName }}_linux_arm64.tar.gz" .TagName }}