From 66c74387a997318bf95098e6ac865a2e4896e009 Mon Sep 17 00:00:00 2001 From: strowi Date: Fri, 18 Apr 2025 09:34:51 +0200 Subject: [PATCH 1/2] feat(zalando-postgres-operator): remove versions >2y old; add versions 1.11-1.14 --- libs/zalando-postgres-operator/config.jsonnet | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libs/zalando-postgres-operator/config.jsonnet b/libs/zalando-postgres-operator/config.jsonnet index 7d66b517..888d9ffd 100644 --- a/libs/zalando-postgres-operator/config.jsonnet +++ b/libs/zalando-postgres-operator/config.jsonnet @@ -1,8 +1,9 @@ local config = import 'jsonnet/config.jsonnet'; local versions = [ - {version: '1.8', tag: 'v1.8.2' }, - {version: '1.7', tag: 'v1.7.1' }, - {version: '1.6', tag: 'v1.6.3' }, + { version: '1.14', tag: 'v1.14.0' }, + { version: '1.13', tag: 'v1.13.0' }, + { version: '1.12', tag: 'v1.12.2' }, + { version: '1.11', tag: 'v1.11.0' }, ]; config.new( @@ -12,9 +13,9 @@ config.new( output: v.version, prefix: '^do\\.zalan\\.acid\\..*', crds: [ - 'https://github.com/zalando/postgres-operator/raw/'+v.tag+'/charts/postgres-operator/crds/operatorconfigurations.yaml', - 'https://github.com/zalando/postgres-operator/raw/'+v.tag+'/charts/postgres-operator/crds/postgresqls.yaml', - 'https://github.com/zalando/postgres-operator/raw/'+v.tag+'/charts/postgres-operator/crds/postgresteams.yaml', + 'https://github.com/zalando/postgres-operator/raw/' + v.tag + '/charts/postgres-operator/crds/operatorconfigurations.yaml', + 'https://github.com/zalando/postgres-operator/raw/' + v.tag + '/charts/postgres-operator/crds/postgresqls.yaml', + 'https://github.com/zalando/postgres-operator/raw/' + v.tag + '/charts/postgres-operator/crds/postgresteams.yaml', ], localName: 'zalando_postgres_operator', } From f342dcdd151c1009638bafb324cfd4309419c422 Mon Sep 17 00:00:00 2001 From: strowi Date: Wed, 23 Apr 2025 11:39:19 +0200 Subject: [PATCH 2/2] fix(zalando-postgres-operator): re-add 1.8 for backwards compatibility --- libs/zalando-postgres-operator/config.jsonnet | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/zalando-postgres-operator/config.jsonnet b/libs/zalando-postgres-operator/config.jsonnet index 888d9ffd..b43bf954 100644 --- a/libs/zalando-postgres-operator/config.jsonnet +++ b/libs/zalando-postgres-operator/config.jsonnet @@ -4,6 +4,7 @@ local versions = [ { version: '1.13', tag: 'v1.13.0' }, { version: '1.12', tag: 'v1.12.2' }, { version: '1.11', tag: 'v1.11.0' }, + { version: '1.8', tag: 'v1.8.2' }, ]; config.new(