We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275c09a commit b372c78Copy full SHA for b372c78
libs/kueue/config.jsonnet
@@ -0,0 +1,18 @@
1
+local config = import 'jsonnet/config.jsonnet';
2
+
3
+local versions = [
4
+ "0.14.3",
5
+];
6
7
+config.new(
8
+ name='kueue',
9
+ specs=[
10
+ {
11
+ output: version,
12
+ crds: ['https://github.com/kubernetes-sigs/kueue/releases/download/v%(version)/manifests.yaml' % { version: version }],
13
+ prefix: '^io\\.x-k8s\\.kueue\\..*',
14
+ localName: 'kueue',
15
+ }
16
+ for version in versions
17
+ ]
18
+)
0 commit comments