Skip to content

Commit 30671df

Browse files
authored
test: Bump OPA to 1.4.2 (#745)
* test: Bump OPA to 1.4.2 * chore: Update changelog * test(opa-authorization): Allow custom images for OPA
1 parent 922f615 commit 30671df

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ All notable changes to this project will be documented in this file.
2323
of having the operator write it to the vector config ([#734]).
2424
- test: Bump HDFS to `3.4.1` ([#741]).
2525
- test: Bump to Vector `0.46.1` ([#743]).
26+
- test: Bump OPA `1.4.2` ([#745]).
2627

2728
### Fixed
2829

@@ -36,6 +37,7 @@ All notable changes to this project will be documented in this file.
3637
[#739]: https://github.com/stackabletech/trino-operator/pull/739
3738
[#741]: https://github.com/stackabletech/trino-operator/pull/741
3839
[#743]: https://github.com/stackabletech/trino-operator/pull/743
40+
[#745]: https://github.com/stackabletech/trino-operator/pull/745
3941

4042
## [25.3.0] - 2025-03-21
4143

tests/templates/kuttl/opa-authorization/10-install-opa.yaml.j2

+5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ commands:
1111
name: opa
1212
spec:
1313
image:
14+
{% if test_scenario['values']['opa'].find(",") > 0 %}
15+
custom: "{{ test_scenario['values']['opa'].split(',')[1] }}"
16+
productVersion: "{{ test_scenario['values']['opa'].split(',')[0] }}"
17+
{% else %}
1418
productVersion: "{{ test_scenario['values']['opa'] }}"
19+
{% endif %}
1520
pullPolicy: IfNotPresent
1621
clusterConfig:
1722
userInfo:

tests/test-definition.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dimensions:
3838
- 4.0.1
3939
- name: opa
4040
values:
41-
- 1.0.1
41+
- 1.4.2
4242
- name: hdfs
4343
values:
4444
- 3.4.1

0 commit comments

Comments
 (0)