Skip to content

Commit 0005747

Browse files
authored
test: Bump OPA to 1.4.2 (#631)
* test: Bump OPA to 1.4.2 * test(opa): Allow custom images for OPA * chore: Update changelog
1 parent 0834040 commit 0005747

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
@@ -21,6 +21,7 @@
2121
- BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead
2222
of having the operator write it to the vector config ([#609]).
2323
- test: Bump to Vector `0.46.1` ([#628]).
24+
- test: Bump OPA to `1.4.2` ([#631]).
2425

2526
### Fixed
2627

@@ -34,6 +35,7 @@
3435
[#623]: https://github.com/stackabletech/superset-operator/pull/623
3536
[#625]: https://github.com/stackabletech/superset-operator/pull/625
3637
[#628]: https://github.com/stackabletech/superset-operator/pull/628
38+
[#631]: https://github.com/stackabletech/superset-operator/pull/631
3739

3840
## [25.3.0] - 2025-03-21
3941

tests/templates/kuttl/opa/30-install-opa.yaml.j2

Lines changed: 5 additions & 0 deletions
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-latest'].find(",") > 0 %}
15+
custom: "{{ test_scenario['values']['opa-latest'].split(',')[1] }}"
16+
productVersion: "{{ test_scenario['values']['opa-latest'].split(',')[0] }}"
17+
{% else %}
1418
productVersion: "{{ test_scenario['values']['opa-latest'] }}"
19+
{% endif %}
1520
pullPolicy: IfNotPresent
1621
clusterConfig:
1722
userInfo:

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dimensions:
2222
- server-verification-tls
2323
- name: opa-latest
2424
values:
25-
- 1.0.1
25+
- 1.4.2
2626
- name: openshift
2727
values:
2828
- "false"

0 commit comments

Comments
 (0)