File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 33local config = import 'jsonnet/config.jsonnet' ;
44
55local versions = [
6- { version: '1.26.0' }, // released on 23 May 2025
7- { version: '1.25.2' }, // released on 23 May 2025
6+ { version: '1.27.0' },
7+ { version: '1.26.1' },
8+ { version: '1.26.0' },
9+ { version: '1.25.3' },
810];
911
1012config.new(
@@ -23,13 +25,20 @@ config.new(
2325 '%s/postgresql.cnpg.io_scheduledbackups.yaml' % url,
2426 ]
2527 + (
26- if (v.version = = '1.25.0' )
28+ if (v.version > = '1.25.0' )
2729 then [
2830 '%s/postgresql.cnpg.io_databases.yaml' % url,
2931 '%s/postgresql.cnpg.io_publications.yaml' % url,
3032 '%s/postgresql.cnpg.io_subscriptions.yaml' % url,
3133 ]
3234 else []
35+ )
36+ + (
37+ if (v.version >= '1.27.0' )
38+ then [
39+ '%s/postgresql.cnpg.io_failoverquorums.yaml' % url,
40+ ]
41+ else []
3342 ),
3443 prefix: '^io\\ .cnpg\\ .postgresql\\ ..*' ,
3544 localName: 'cloudnative-pg' ,
You can’t perform that action at this time.
0 commit comments