From 75dfe80047f94db2bad5108e925b07264a6a9885 Mon Sep 17 00:00:00 2001 From: Oleksii Zhadaiev Date: Thu, 5 Jun 2025 14:52:41 +0300 Subject: [PATCH 1/4] chore(rabbitmq): add 2.14.0 --- libs/rabbitmq/config.jsonnet | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/libs/rabbitmq/config.jsonnet b/libs/rabbitmq/config.jsonnet index 9ac9b1c3..a76d2485 100644 --- a/libs/rabbitmq/config.jsonnet +++ b/libs/rabbitmq/config.jsonnet @@ -1,14 +1,15 @@ local config = import 'jsonnet/config.jsonnet'; local versions = [ - { tag: "1.7.0", version: "1.7" }, - { tag: "1.14.0", version: "1.14" } - { tag: "2.0.0", version: "2.0" }, - { tag: "2.1.0", version: "2.1" }, - { tag: "2.6.0", version: "2.6" }, - { tag: "2.7.0", version: "2.7" }, - { tag: "2.8.0", version: "2.8" }, - { tag: "2.9.0", version: "2.9" }, - { tag: "2.12.1", version: "2.12" }, + { tag: '1.7.0', version: '1.7' }, + { tag: '1.14.0', version: '1.14' } + { tag: '2.0.0', version: '2.0' }, + { tag: '2.1.0', version: '2.1' }, + { tag: '2.6.0', version: '2.6' }, + { tag: '2.7.0', version: '2.7' }, + { tag: '2.8.0', version: '2.8' }, + { tag: '2.9.0', version: '2.9' }, + { tag: '2.12.1', version: '2.12' }, + { tag: '2.14.0', version: '2.14' }, ]; @@ -20,7 +21,7 @@ config.new( openapi: 'http://localhost:8001/openapi/v2', prefix: '^com\\.rabbitmq\\..*', crds: [ - 'https://github.com/rabbitmq/cluster-operator/releases/download/v%s/cluster-operator.yml' % v.tag + 'https://github.com/rabbitmq/cluster-operator/releases/download/v%s/cluster-operator.yml' % v.tag, ], localName: 'rabbitmq', } From f80b60a18b84533b26b6ea553267087f60209a96 Mon Sep 17 00:00:00 2001 From: Oleksii Zhadaiev Date: Thu, 5 Jun 2025 15:04:13 +0300 Subject: [PATCH 2/4] chore(clickhouse-operator): add versions 0.24 and 0.25 --- libs/clickhouse-operator/config.jsonnet | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libs/clickhouse-operator/config.jsonnet b/libs/clickhouse-operator/config.jsonnet index 9cf1c08e..4fda0e94 100644 --- a/libs/clickhouse-operator/config.jsonnet +++ b/libs/clickhouse-operator/config.jsonnet @@ -1,8 +1,10 @@ local config = import 'jsonnet/config.jsonnet'; local versions = [ - { output: '0.23', version: 'release-0.23.5' }, - { output: '0.22', version: 'release-0.22.2' }, { output: '0.21', version: 'release-0.21.3' }, + { output: '0.22', version: 'release-0.22.2' }, + { output: '0.23', version: 'release-0.23.5' }, + { output: '0.24', version: 'release-0.24.5' }, + { output: '0.25', version: 'release-0.25.0' }, ]; config.new( From d449c90d1dfbbcd163ac7617b321c72d62fd7a20 Mon Sep 17 00:00:00 2001 From: Oleksii Zhadaiev Date: Thu, 5 Jun 2025 15:08:01 +0300 Subject: [PATCH 3/4] fix: rebase --- libs/rabbitmq/config.jsonnet | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/libs/rabbitmq/config.jsonnet b/libs/rabbitmq/config.jsonnet index a76d2485..4502c054 100644 --- a/libs/rabbitmq/config.jsonnet +++ b/libs/rabbitmq/config.jsonnet @@ -1,15 +1,14 @@ local config = import 'jsonnet/config.jsonnet'; local versions = [ - { tag: '1.7.0', version: '1.7' }, - { tag: '1.14.0', version: '1.14' } - { tag: '2.0.0', version: '2.0' }, - { tag: '2.1.0', version: '2.1' }, - { tag: '2.6.0', version: '2.6' }, - { tag: '2.7.0', version: '2.7' }, - { tag: '2.8.0', version: '2.8' }, - { tag: '2.9.0', version: '2.9' }, - { tag: '2.12.1', version: '2.12' }, - { tag: '2.14.0', version: '2.14' }, + { tag: "1.7.0", version: "1.7" }, + { tag: "1.14.0", version: "1.14" } + { tag: "2.0.0", version: "2.0" }, + { tag: "2.1.0", version: "2.1" }, + { tag: "2.6.0", version: "2.6" }, + { tag: "2.7.0", version: "2.7" }, + { tag: "2.8.0", version: "2.8" }, + { tag: "2.9.0", version: "2.9" }, + { tag: "2.12.1", version: "2.12" }, ]; @@ -21,7 +20,7 @@ config.new( openapi: 'http://localhost:8001/openapi/v2', prefix: '^com\\.rabbitmq\\..*', crds: [ - 'https://github.com/rabbitmq/cluster-operator/releases/download/v%s/cluster-operator.yml' % v.tag, + "https://github.com/rabbitmq/cluster-operator/releases/download/v%s/cluster-operator.yml" % v.tag, ], localName: 'rabbitmq', } From d3554a0c82a83f2fdac444e30d9c1b833b6403d4 Mon Sep 17 00:00:00 2001 From: Oleksii Zhadaiev Date: Thu, 5 Jun 2025 15:08:36 +0300 Subject: [PATCH 4/4] fix: rebase --- libs/rabbitmq/config.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/rabbitmq/config.jsonnet b/libs/rabbitmq/config.jsonnet index 4502c054..9ac9b1c3 100644 --- a/libs/rabbitmq/config.jsonnet +++ b/libs/rabbitmq/config.jsonnet @@ -20,7 +20,7 @@ config.new( openapi: 'http://localhost:8001/openapi/v2', prefix: '^com\\.rabbitmq\\..*', crds: [ - "https://github.com/rabbitmq/cluster-operator/releases/download/v%s/cluster-operator.yml" % v.tag, + 'https://github.com/rabbitmq/cluster-operator/releases/download/v%s/cluster-operator.yml' % v.tag ], localName: 'rabbitmq', }