From d7be66e6c79756a28764f1d0f7c4c2ff6ddc4858 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Thu, 8 May 2025 11:58:18 +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 3848dfef..1dace3b4 100644 --- a/tests/test-definition.yaml +++ b/tests/test-definition.yaml @@ -33,7 +33,7 @@ dimensions: - 1.21.1 - name: opa values: - - 1.0.1 + - 1.4.2 # Used for zookeeper, hdfs and hbase - name: listener-class values: From 591a23ef5ddf159f86b5d4cd9b12b56a70d51fe4 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Thu, 8 May 2025 11:58:38 +0200 Subject: [PATCH 2/3] test(opa): Allow custom images for OPA --- tests/templates/kuttl/opa/11-install-opa.yaml.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/templates/kuttl/opa/11-install-opa.yaml.j2 b/tests/templates/kuttl/opa/11-install-opa.yaml.j2 index 61392e99..4b6a0783 100644 --- a/tests/templates/kuttl/opa/11-install-opa.yaml.j2 +++ b/tests/templates/kuttl/opa/11-install-opa.yaml.j2 @@ -5,7 +5,12 @@ metadata: name: 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 servers: config: From d42601b8f09b524261c2f73514785da7d84429ea Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Thu, 8 May 2025 12:00:12 +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 6026a508..6135da88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - 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 ([#645]). - test: Bump to Vector `0.46.1` ([#657]). +- test: Bump OPA to `1.4.2` ([#661]). ### Fixed @@ -39,6 +40,7 @@ [#654]: https://github.com/stackabletech/hbase-operator/pull/654 [#655]: https://github.com/stackabletech/hbase-operator/pull/655 [#657]: https://github.com/stackabletech/hbase-operator/pull/657 +[#661]: https://github.com/stackabletech/hbase-operator/pull/661 ## [25.3.0] - 2025-03-21