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 c183f89 commit 7495848Copy full SHA for 7495848
rust/operator-binary/src/container.rs
@@ -904,6 +904,15 @@ wait_for_termination $!
904
},
905
);
906
}
907
+ // Needed for the `containerdebug` process to log it's tracing information to.
908
+ env.insert(
909
+ "CONTAINERDEBUG_LOG_DIRECTORY".to_string(),
910
+ EnvVar {
911
+ name: "CONTAINERDEBUG_LOG_DIRECTORY".to_string(),
912
+ value: Some(format!("{STACKABLE_LOG_DIR}/containerdebug")),
913
+ value_from: None,
914
+ },
915
+ );
916
917
// Overrides need to come last
918
let mut env_override_vars: BTreeMap<String, EnvVar> =
0 commit comments