Skip to content

Commit fb5ca0a

Browse files
authored
test: Bump OPA to 1.4.2 (#624)
* test: Bump OPA to 1.4.2 * test(opa): Allow custom images for OPA * chore: Update changelog * test(opa): Fix custom images for OPA
1 parent c44e974 commit fb5ca0a

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 ([#600]).
2323
- test: Bump to Vector 0.46.1 ([#620]).
24+
- test: Bump OPA to `1.4.2` ([#624]).
2425

2526
### Fixed
2627

@@ -34,6 +35,7 @@
3435
[#608]: https://github.com/stackabletech/airflow-operator/pull/608
3536
[#613]: https://github.com/stackabletech/airflow-operator/pull/613
3637
[#620]: https://github.com/stackabletech/airflow-operator/pull/620
38+
[#624]: https://github.com/stackabletech/airflow-operator/pull/624
3739

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ metadata:
1010
name: opa
1111
spec:
1212
image:
13+
{% if test_scenario['values']['opa-latest'].find(",") > 0 %}
14+
custom: "{{ test_scenario['values']['opa-latest'].split(',')[1] }}"
15+
productVersion: "{{ test_scenario['values']['opa-latest'].split(',')[0] }}"
16+
{% else %}
1317
productVersion: "{{ test_scenario['values']['opa-latest'] }}"
18+
{% endif %}
1419
pullPolicy: IfNotPresent
1520
clusterConfig:
1621
{% if lookup('env', 'VECTOR_AGGREGATOR') %}

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dimensions:
1818
# - 2.9.3,oci.stackable.tech/sandbox/airflow:2.9.3-stackable0.0.0-dev
1919
- name: opa-latest
2020
values:
21-
- 1.0.1
21+
- 1.4.2
2222
- name: ldap-authentication
2323
values:
2424
- no-tls

0 commit comments

Comments
 (0)