File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ All notable changes to this project will be documented in this file.
37
37
of having the operator write it to the vector config ([ #707 ] ).
38
38
- test: Bump to Vector 0.46.1 ([ #721 ] ).
39
39
- Use versioned common structs ([ #727 ] ).
40
+ - BREAKING: Previously this operator would hardcode the UID and GID of the Pods being created to 1000/0, this has changed now ([ #732 ] )
41
+ - The ` runAsUser ` and ` runAsGroup ` fields will not be set anymore by the operator
42
+ - The defaults from the docker images itself will now apply, which will be different from 1000/0 going forward
43
+ - This is marked as breaking because tools and policies might exist, which require these fields to be set
40
44
41
45
### Fixed
42
46
@@ -55,6 +59,7 @@ All notable changes to this project will be documented in this file.
55
59
[ #721 ] : https://github.com/stackabletech/opa-operator/pull/721
56
60
[ #723 ] : https://github.com/stackabletech/opa-operator/pull/723
57
61
[ #727 ] : https://github.com/stackabletech/opa-operator/pull/727
62
+ [ #732 ] : https://github.com/stackabletech/opa-operator/pull/732
58
63
59
64
## [ 25.3.0] - 2025-03-21
60
65
Original file line number Diff line number Diff line change @@ -927,13 +927,7 @@ fn build_server_rolegroup_daemonset(
927
927
)
928
928
. context ( AddVolumeSnafu ) ?
929
929
. service_account_name ( service_account. name_any ( ) )
930
- . security_context (
931
- PodSecurityContextBuilder :: new ( )
932
- . run_as_user ( 1000 )
933
- . run_as_group ( 0 )
934
- . fs_group ( 1000 )
935
- . build ( ) ,
936
- ) ;
930
+ . security_context ( PodSecurityContextBuilder :: new ( ) . fs_group ( 1000 ) . build ( ) ) ;
937
931
938
932
if let Some ( user_info) = & opa. spec . cluster_config . user_info {
939
933
let mut cb_user_info_fetcher =
You can’t perform that action at this time.
0 commit comments