Skip to content

Commit d56873b

Browse files
authored
Add v1.27.0 (#566)
1 parent 7a94655 commit d56873b

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

libs/cloudnative-pg/config.jsonnet

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
local config = import 'jsonnet/config.jsonnet';
44

55
local 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

1012
config.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',

0 commit comments

Comments
 (0)