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 aad9bcc commit cef93a4Copy full SHA for cef93a4
rust/operator-binary/src/hbase_controller.rs
@@ -894,6 +894,11 @@ fn build_rolegroup_statefulset(
894
create_vector_shutdown_file_command(STACKABLE_LOG_DIR),
895
}])
896
.add_env_vars(merged_env)
897
+ // Needed for the `containerdebug` process to log it's tracing information to.
898
+ .add_env_var(
899
+ "CONTAINERDEBUG_LOG_DIRECTORY",
900
+ format!("{STACKABLE_LOG_DIR}/containerdebug"),
901
+ )
902
.add_volume_mount("hbase-config", HBASE_CONFIG_TMP_DIR)
903
.context(AddVolumeMountSnafu)?
904
.add_volume_mount("hdfs-discovery", HDFS_DISCOVERY_TMP_DIR)
0 commit comments