Skip to content

Commit ca4ff00

Browse files
authored
test: Bump OPA to 1.4.2 (#721)
* test: Bump OPA to 1.4.2 * test(authorizer): Allow custom images for OPA * chore: Update changelog
1 parent f41737e commit ca4ff00

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file.
2222
- BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead
2323
of having the operator write it to the vector config ([#704]).
2424
- test: Bump to Vector `0.46.1` ([#719]).
25+
- test: Bump OPA to `1.4.2` ([#721]).
2526

2627
### Fixed
2728

@@ -39,6 +40,7 @@ All notable changes to this project will be documented in this file.
3940
[#714]: https://github.com/stackabletech/druid-operator/pull/714
4041
[#716]: https://github.com/stackabletech/druid-operator/pull/716
4142
[#719]: https://github.com/stackabletech/druid-operator/pull/719
43+
[#721]: https://github.com/stackabletech/druid-operator/pull/721
4244

4345
## [25.3.0] - 2025-03-21
4446

tests/templates/kuttl/authorizer/02-install-opa.yaml.j2

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ metadata:
2929
name: test-opa
3030
spec:
3131
image:
32+
{% if test_scenario['values']['opa'].find(",") > 0 %}
33+
custom: "{{ test_scenario['values']['opa'].split(',')[1] }}"
34+
productVersion: "{{ test_scenario['values']['opa'].split(',')[0] }}"
35+
{% else %}
3236
productVersion: "{{ test_scenario['values']['opa'] }}"
37+
{% endif %}
3338
pullPolicy: IfNotPresent
3439
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
3540
clusterConfig:

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dimensions:
3131
- 3.9.3
3232
- name: opa
3333
values:
34-
- 1.0.1
34+
- 1.4.2
3535
- name: hadoop
3636
values:
3737
- 3.4.1

0 commit comments

Comments
 (0)