From 285c1e463f7694d20480174052dc076ba6c1ffc2 Mon Sep 17 00:00:00 2001 From: Jakub Hajek Date: Mon, 8 Sep 2025 14:24:27 +0200 Subject: [PATCH] Add v1.27.0 --- libs/cloudnative-pg/config.jsonnet | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/libs/cloudnative-pg/config.jsonnet b/libs/cloudnative-pg/config.jsonnet index f4a2bf1a..d5da8994 100644 --- a/libs/cloudnative-pg/config.jsonnet +++ b/libs/cloudnative-pg/config.jsonnet @@ -3,8 +3,10 @@ local config = import 'jsonnet/config.jsonnet'; local versions = [ - { version: '1.26.0' }, // released on 23 May 2025 - { version: '1.25.2' }, // released on 23 May 2025 + { version: '1.27.0' }, + { version: '1.26.1' }, + { version: '1.26.0' }, + { version: '1.25.3' }, ]; config.new( @@ -23,13 +25,20 @@ config.new( '%s/postgresql.cnpg.io_scheduledbackups.yaml' % url, ] + ( - if (v.version == '1.25.0') + if (v.version >= '1.25.0') then [ '%s/postgresql.cnpg.io_databases.yaml' % url, '%s/postgresql.cnpg.io_publications.yaml' % url, '%s/postgresql.cnpg.io_subscriptions.yaml' % url, ] else [] + ) + + ( + if (v.version >= '1.27.0') + then [ + '%s/postgresql.cnpg.io_failoverquorums.yaml' % url, + ] + else [] ), prefix: '^io\\.cnpg\\.postgresql\\..*', localName: 'cloudnative-pg',