File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 20
20
- BREAKING: Inject the vector aggregator address into the vector config using the env var ` VECTOR_AGGREGATOR_ADDRESS ` instead
21
21
of having the operator write it to the vector config ([ #645 ] ).
22
22
- 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
24
26
- 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
26
28
### Fixed
27
29
28
30
- Use ` json ` file extension for log files ([ #647 ] ).
42
44
[ #655 ] : https://github.com/stackabletech/hbase-operator/pull/655
43
45
[ #657 ] : https://github.com/stackabletech/hbase-operator/pull/657
44
46
[ #660 ] : https://github.com/stackabletech/hbase-operator/pull/660
47
+ [ #661 ] : https://github.com/stackabletech/hbase-operator/pull/661
45
48
46
49
## [ 25.3.0] - 2025-03-21
47
50
Original file line number Diff line number Diff line change @@ -5,7 +5,12 @@ metadata:
5
5
name: opa
6
6
spec:
7
7
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 %}
8
12
productVersion: "{{ test_scenario['values'] ['opa'] }}"
13
+ {% endif %}
9
14
pullPolicy: IfNotPresent
10
15
servers:
11
16
config:
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ dimensions:
33
33
- 1.21.1
34
34
- name : opa
35
35
values :
36
- - 1.0.1
36
+ - 1.4.2
37
37
# Used for zookeeper, hdfs and hbase
38
38
- name : listener-class
39
39
values :
You can’t perform that action at this time.
0 commit comments