File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 21
21
of having the operator write it to the vector config ([ #645 ] ).
22
22
- test: Bump to Vector ` 0.46.1 ` ([ #657 ] ).
23
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
26
+ - The defaults from the docker images itself will now apply, which will be different from 1000/0 going forward
27
+ - This is marked as breaking because tools and policies might exist, which require these fields to be set
24
28
25
29
### Fixed
26
30
40
44
[ #654 ] : https://github.com/stackabletech/hbase-operator/pull/654
41
45
[ #655 ] : https://github.com/stackabletech/hbase-operator/pull/655
42
46
[ #657 ] : https://github.com/stackabletech/hbase-operator/pull/657
47
+ [ #660 ] : https://github.com/stackabletech/hbase-operator/pull/660
43
48
[ #661 ] : https://github.com/stackabletech/hbase-operator/pull/661
44
49
45
50
## [ 25.3.0] - 2025-03-21
Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ const HBASE_CONFIG_TMP_DIR: &str = "/stackable/tmp/hbase";
101
101
const HBASE_LOG_CONFIG_TMP_DIR : & str = "/stackable/tmp/log_config" ;
102
102
103
103
const DOCKER_IMAGE_BASE_NAME : & str = "hbase" ;
104
- const HBASE_UID : i64 = 1000 ;
105
104
106
105
pub struct Ctx {
107
106
pub client : stackable_operator:: client:: Client ,
@@ -939,13 +938,7 @@ fn build_rolegroup_statefulset(
939
938
)
940
939
. context ( AddVolumeSnafu ) ?
941
940
. service_account_name ( service_account. name_any ( ) )
942
- . security_context (
943
- PodSecurityContextBuilder :: new ( )
944
- . run_as_user ( HBASE_UID )
945
- . run_as_group ( 0 )
946
- . fs_group ( 1000 )
947
- . build ( ) ,
948
- ) ;
941
+ . security_context ( PodSecurityContextBuilder :: new ( ) . fs_group ( 1000 ) . build ( ) ) ;
949
942
950
943
if let Some ( ContainerLogConfig {
951
944
choice :
You can’t perform that action at this time.
0 commit comments