generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 254
/
.krew.yaml
41 lines (40 loc) · 1.58 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
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: kueue
spec:
version: {{ .TagName }}
shortDescription: Controls Kueue queueing manager.
homepage: https://kueue.sigs.k8s.io/docs/reference/kubectl-kueue/
description: |
The kubectl-kueue plugin, kueuectl, allows you to list, create, resume
and stop kueue resources such as clusterqueues, localqueues and workloads.
See the documentation for more information: https://kueue.sigs.k8s.io/docs/reference/kubectl-kueue/
caveats: |
Requires the Kueue operator to be installed:
https://kueue.sigs.k8s.io/docs/installation/
platforms:
- selector:
matchLabels:
os: "linux"
arch: "amd64"
{{addURIAndSha "https://github.com/kubernetes-sigs/kueue/releases/download/{{ .TagName }}/kubectl-kueue-linux-amd64.tar.gz" .TagName }}
bin: "kubectl-kueue"
- selector:
matchLabels:
os: "linux"
arch: "arm64"
{{addURIAndSha "https://github.com/kubernetes-sigs/kueue/releases/download/{{ .TagName }}/kubectl-kueue-linux-arm64.tar.gz" .TagName }}
bin: "kubectl-kueue"
- selector:
matchLabels:
os: "darwin"
arch: "amd64"
{{addURIAndSha "https://github.com/kubernetes-sigs/kueue/releases/download/{{ .TagName }}/kubectl-kueue-darwin-amd64.tar.gz" .TagName }}
bin: "kubectl-kueue"
- selector:
matchLabels:
os: "darwin"
arch: "arm64"
{{addURIAndSha "https://github.com/kubernetes-sigs/kueue/releases/download/{{ .TagName }}/kubectl-kueue-darwin-arm64.tar.gz" .TagName }}
bin: "kubectl-kueue"