Skip to content

Commit 9eb9a9d

Browse files
committed
Merge main and fix conflict
2 parents 530260a + 5d124fe commit 9eb9a9d

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@
2020
- BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead
2121
of having the operator write it to the vector config ([#645]).
2222
- test: Bump to Vector `0.46.1` ([#657]).
23-
- Previously this operator would hardcode the UID and GID of the Pods being created to 1000/0, this has changed now ([#660])
23+
- test: Bump OPA to `1.4.2` ([#661]).
24+
- BREAKING: Previously this operator would hardcode the UID and GID of the Pods being created to 1000/0, this has changed now ([#660])
25+
- The `runAsUser` and `runAsGroup` fields will not be set anymore by the operator
2426
- The defaults from the docker images itself will now apply, which will be different from 1000/0 going forward
25-
27+
- This is marked as breaking because tools and policies might exist, which require these fields to be set
2628
### Fixed
2729

2830
- Use `json` file extension for log files ([#647]).
@@ -42,6 +44,7 @@
4244
[#655]: https://github.com/stackabletech/hbase-operator/pull/655
4345
[#657]: https://github.com/stackabletech/hbase-operator/pull/657
4446
[#660]: https://github.com/stackabletech/hbase-operator/pull/660
47+
[#661]: https://github.com/stackabletech/hbase-operator/pull/661
4548

4649
## [25.3.0] - 2025-03-21
4750

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ metadata:
55
name: opa
66
spec:
77
image:
8+
{% if test_scenario['values']['opa'].find(",") > 0 %}
9+
custom: "{{ test_scenario['values']['opa'].split(',')[1] }}"
10+
productVersion: "{{ test_scenario['values']['opa'].split(',')[0] }}"
11+
{% else %}
812
productVersion: "{{ test_scenario['values']['opa'] }}"
13+
{% endif %}
914
pullPolicy: IfNotPresent
1015
servers:
1116
config:

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dimensions:
3333
- 1.21.1
3434
- name: opa
3535
values:
36-
- 1.0.1
36+
- 1.4.2
3737
# Used for zookeeper, hdfs and hbase
3838
- name: listener-class
3939
values:

0 commit comments

Comments
 (0)