Skip to content

Commit 275c09a

Browse files
authored
chore(keda): update version (#547)
1 parent 2c964f3 commit 275c09a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

libs/keda/config.jsonnet

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ local versions = [
88
{ output: '2.14', version: '2.14.1' },
99
{ output: '2.15', version: '2.15.1' },
1010
{ output: '2.16', version: '2.16.1' },
11+
{ output: '2.17', version: '2.17.1' },
1112
];
1213

1314
config.new(
@@ -22,7 +23,10 @@ config.new(
2223
'%s/keda.sh_scaledjobs.yaml' % url,
2324
'%s/keda.sh_scaledobjects.yaml' % url,
2425
'%s/keda.sh_triggerauthentications.yaml' % url,
25-
],
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 [],
2630
localName: 'keda',
2731
}
2832
for v in versions

0 commit comments

Comments
 (0)