File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 23
23
- test: Bump to Vector ` 0.46.1 ` ([ #628 ] ).
24
24
- test: Bump OPA to ` 1.4.2 ` ([ #631 ] ).
25
25
- Use versioned common structs ([ #635 ] ).
26
+ - BREAKING: Previously this operator would hardcode the UID and GID of the Pods being created to 1000/0, this has changed now ([ #637 ] )
27
+ - The ` runAsUser ` and ` runAsGroup ` fields will not be set anymore by the operator
28
+ - The defaults from the docker images itself will now apply, which will be different from 1000/0 going forward
29
+ - This is marked as breaking because tools and policies might exist, which require these fields to be set
26
30
27
31
### Fixed
28
32
38
42
[ #628 ] : https://github.com/stackabletech/superset-operator/pull/628
39
43
[ #631 ] : https://github.com/stackabletech/superset-operator/pull/631
40
44
[ #635 ] : https://github.com/stackabletech/superset-operator/pull/635
45
+ [ #637 ] : https://github.com/stackabletech/superset-operator/pull/637
41
46
42
47
## [ 25.3.0] - 2025-03-21
43
48
Original file line number Diff line number Diff line change @@ -344,12 +344,7 @@ async fn build_import_job(
344
344
image_pull_secrets : resolved_product_image. pull_secrets . clone ( ) ,
345
345
restart_policy : Some ( "Never" . to_string ( ) ) ,
346
346
service_account : Some ( sa_name. to_string ( ) ) ,
347
- security_context : Some (
348
- PodSecurityContextBuilder :: new ( )
349
- . run_as_user ( 1000 )
350
- . run_as_group ( 0 )
351
- . build ( ) ,
352
- ) ,
347
+ security_context : Some ( PodSecurityContextBuilder :: new ( ) . build ( ) ) ,
353
348
..Default :: default ( )
354
349
} ) ,
355
350
} ;
Original file line number Diff line number Diff line change @@ -755,8 +755,6 @@ fn build_server_rolegroup_statefulset(
755
755
. image_pull_secrets_from_product_image ( resolved_product_image)
756
756
. security_context (
757
757
PodSecurityContextBuilder :: new ( )
758
- . run_as_user ( 1000 )
759
- . run_as_group ( 0 )
760
758
. fs_group ( 1000 ) // Needed for secret-operator
761
759
. build ( ) ,
762
760
)
You can’t perform that action at this time.
0 commit comments