From 605e66a26b87f3a60dedec323eb74372f8ea2b97 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Tue, 29 Jul 2025 09:36:01 +0800 Subject: [PATCH] fix: add missing logging environment variables for central storage K8s deployment - Add LOG_BASE_PATH environment variable - Add BACKEND_LOG_FILE_NAME environment variable - Add APPLICATION_ACTIVITY_LOG environment variable - Fix logging path configuration for K8s environment --- .../templates/central-storage/central-storage-config.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/freeleaps/helm-pkg/centralStorage/templates/central-storage/central-storage-config.yaml b/freeleaps/helm-pkg/centralStorage/templates/central-storage/central-storage-config.yaml index d77fe6db..76e25aa8 100644 --- a/freeleaps/helm-pkg/centralStorage/templates/central-storage/central-storage-config.yaml +++ b/freeleaps/helm-pkg/centralStorage/templates/central-storage/central-storage-config.yaml @@ -16,4 +16,7 @@ data: AZURE_STORAGE_DOCUMENT_API_ENDPOINT: {{ .Values.centralStorage.configs.azureStorageDocumentApiEndpoint | b64enc | quote }} METRICS_ENABLED: {{ .Values.centralStorage.configs.metricsEnabled | default false | toString | b64enc }} PROBES_ENABLED: {{ .Values.centralStorage.configs.probesEnabled | default false | toString | b64enc }} - DEBUG_MODE: {{ .Values.centralStorage.configs.debugMode | default false | toString | b64enc }} \ No newline at end of file + DEBUG_MODE: {{ .Values.centralStorage.configs.debugMode | default false | toString | b64enc }} + LOG_BASE_PATH: {{ .Values.logIngest.logPath | b64enc | quote }} + BACKEND_LOG_FILE_NAME: {{ .Values.centralStorage.configs.appName | b64enc | quote }} + APPLICATION_ACTIVITY_LOG: {{ .Values.centralStorage.configs.appName | printf "%s-activity" | b64enc | quote }} \ No newline at end of file