@@ -17,9 +17,9 @@ use stackable_druid_crd::{
1717 Container , DeepStorageSpec , DruidCluster , DruidClusterStatus , DruidRole , APP_NAME ,
1818 AUTH_AUTHORIZER_OPA_URI , CREDENTIALS_SECRET_PROPERTY , DB_PASSWORD_ENV , DB_USERNAME_ENV ,
1919 DRUID_CONFIG_DIRECTORY , DS_BUCKET , EXTENSIONS_LOADLIST , HDFS_CONFIG_DIRECTORY , JVM_CONFIG ,
20- JVM_SECURITY_PROPERTIES_FILE , LOG_CONFIG_DIRECTORY , LOG_DIR , MAX_DRUID_LOG_FILES_SIZE ,
21- RUNTIME_PROPS , RW_CONFIG_DIRECTORY , S3_ACCESS_KEY , S3_ENDPOINT_URL , S3_PATH_STYLE_ACCESS ,
22- S3_SECRET_KEY , ZOOKEEPER_CONNECTION_STRING ,
20+ JVM_SECURITY_PROPERTIES_FILE , LOG_CONFIG_DIRECTORY , MAX_DRUID_LOG_FILES_SIZE , RUNTIME_PROPS ,
21+ RW_CONFIG_DIRECTORY , S3_ACCESS_KEY , S3_ENDPOINT_URL , S3_PATH_STYLE_ACCESS , S3_SECRET_KEY ,
22+ STACKABLE_LOG_DIR , ZOOKEEPER_CONNECTION_STRING ,
2323} ;
2424use stackable_operator:: {
2525 builder:: {
@@ -964,7 +964,7 @@ fn build_rolegroup_statefulset(
964964 // This command needs to be added at the beginning of the shell commands,
965965 // otherwise the output of the following commands will not be captured!
966966 prepare_container_commands. push ( product_logging:: framework:: capture_shell_output (
967- LOG_DIR ,
967+ STACKABLE_LOG_DIR ,
968968 & prepare_container_name,
969969 log_config,
970970 ) ) ;
@@ -1292,10 +1292,10 @@ fn add_log_volume_and_volume_mounts(
12921292 pb : & mut PodBuilder ,
12931293) -> Result < ( ) > {
12941294 cb_druid
1295- . add_volume_mount ( LOG_VOLUME_NAME , LOG_DIR )
1295+ . add_volume_mount ( LOG_VOLUME_NAME , STACKABLE_LOG_DIR )
12961296 . context ( AddVolumeMountSnafu ) ?;
12971297 cb_prepare
1298- . add_volume_mount ( LOG_VOLUME_NAME , LOG_DIR )
1298+ . add_volume_mount ( LOG_VOLUME_NAME , STACKABLE_LOG_DIR )
12991299 . context ( AddVolumeMountSnafu ) ?;
13001300 pb. add_volume (
13011301 VolumeBuilder :: new ( LOG_VOLUME_NAME )
0 commit comments