We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf25e44 commit c068fd9Copy full SHA for c068fd9
rust/operator-binary/src/druid_controller.rs
@@ -88,7 +88,6 @@ use crate::{
88
pub const DRUID_CONTROLLER_NAME: &str = "druidcluster";
89
pub const FULL_CONTROLLER_NAME: &str = concatcp!(DRUID_CONTROLLER_NAME, '.', OPERATOR_NAME);
90
91
-const DRUID_UID: i64 = 1000;
92
const DOCKER_IMAGE_BASE_NAME: &str = "druid";
93
94
// volume names
@@ -1140,8 +1139,6 @@ fn build_rolegroup_statefulset(
1140
1139
.service_account_name(service_account.name_any())
1141
.security_context(
1142
PodSecurityContextBuilder::new()
1143
- .run_as_user(DRUID_UID)
1144
- .run_as_group(0)
1145
.fs_group(1000)
1146
.build(),
1147
);
0 commit comments