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 2c964f3 commit 275c09aCopy full SHA for 275c09a
libs/keda/config.jsonnet
@@ -8,6 +8,7 @@ local versions = [
8
{ output: '2.14', version: '2.14.1' },
9
{ output: '2.15', version: '2.15.1' },
10
{ output: '2.16', version: '2.16.1' },
11
+ { output: '2.17', version: '2.17.1' },
12
];
13
14
config.new(
@@ -22,7 +23,10 @@ config.new(
22
23
'%s/keda.sh_scaledjobs.yaml' % url,
24
'%s/keda.sh_scaledobjects.yaml' % url,
25
'%s/keda.sh_triggerauthentications.yaml' % url,
- ],
26
+ ] + if std.parseInt(std.split(v.version, '.')[1]) >= 16 then [
27
+ '%s/eventing.keda.sh_cloudeventsources.yaml' % url,
28
+ '%s/eventing.keda.sh_clustercloudeventsources.yaml' % url,
29
+ ] else [],
30
localName: 'keda',
31
}
32
for v in versions
0 commit comments