From d1c4240dbe8b445be5fff38fd8453fa3c2b04335 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Thu, 8 May 2025 12:02:52 +0200 Subject: [PATCH 1/3] test: Bump OPA to 1.4.2 --- tests/test-definition.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-definition.yaml b/tests/test-definition.yaml index a6994f21..b2ef40ff 100644 --- a/tests/test-definition.yaml +++ b/tests/test-definition.yaml @@ -31,7 +31,7 @@ dimensions: - 3.9.3 - name: opa values: - - 1.0.1 + - 1.4.2 - name: hadoop values: - 3.4.1 From 58c9efbbd03e0da928a703ede3235ffca42ccdbb Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Thu, 8 May 2025 12:03:53 +0200 Subject: [PATCH 2/3] test(authorizer): Allow custom images for OPA --- tests/templates/kuttl/authorizer/02-install-opa.yaml.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/templates/kuttl/authorizer/02-install-opa.yaml.j2 b/tests/templates/kuttl/authorizer/02-install-opa.yaml.j2 index 75c75f55..55d4d724 100644 --- a/tests/templates/kuttl/authorizer/02-install-opa.yaml.j2 +++ b/tests/templates/kuttl/authorizer/02-install-opa.yaml.j2 @@ -29,7 +29,12 @@ metadata: name: test-opa spec: image: +{% if test_scenario['values']['opa'].find(",") > 0 %} + custom: "{{ test_scenario['values']['opa'].split(',')[1] }}" + productVersion: "{{ test_scenario['values']['opa'].split(',')[0] }}" +{% else %} productVersion: "{{ test_scenario['values']['opa'] }}" +{% endif %} pullPolicy: IfNotPresent {% if lookup('env', 'VECTOR_AGGREGATOR') %} clusterConfig: From df1da9b2f23b90e2c9ce2e41172bf7c3dfe18d63 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Thu, 8 May 2025 12:05:24 +0200 Subject: [PATCH 3/3] chore: Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ac7576b..2397eedc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file. - BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead of having the operator write it to the vector config ([#704]). - test: Bump to Vector `0.46.1` ([#719]). +- test: Bump OPA to `1.4.2` ([#721]). ### Fixed @@ -39,6 +40,7 @@ All notable changes to this project will be documented in this file. [#714]: https://github.com/stackabletech/druid-operator/pull/714 [#716]: https://github.com/stackabletech/druid-operator/pull/716 [#719]: https://github.com/stackabletech/druid-operator/pull/719 +[#721]: https://github.com/stackabletech/druid-operator/pull/721 ## [25.3.0] - 2025-03-21