diff --git a/stable/mlrun/Chart.yaml b/stable/mlrun/Chart.yaml index fd77c5fea..f2b3ba24b 100644 --- a/stable/mlrun/Chart.yaml +++ b/stable/mlrun/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mlrun -version: 0.9.18 +version: 0.9.19 appVersion: 1.4.0 description: Machine Learning automation and tracking sources: diff --git a/stable/mlrun/templates/api-log-collector-config.yaml b/stable/mlrun/templates/api-log-collector-config.yaml index 2e48fefc9..ca61546a9 100644 --- a/stable/mlrun/templates/api-log-collector-config.yaml +++ b/stable/mlrun/templates/api-log-collector-config.yaml @@ -5,6 +5,7 @@ metadata: name: mlrun-log-collector-config data: MLRUN_LOG_COLLECTOR__LOG_LEVEL: "{{ .Values.api.sidecars.logCollector.logLevel }}" + MLRUN_LOG_COLLECTOR__ADVANCED_LOG_LEVEL: "{{ .Values.api.sidecars.logCollector.advancedLogLevel }}" MLRUN_LOG_COLLECTOR__LOG_FORMATTER: "{{ .Values.api.sidecars.logCollector.logFormat }}" MLRUN_LOG_COLLECTOR__LISTEN_PORT: "{{ .Values.api.sidecars.logCollector.listenPort }}" MLRUN_LOG_COLLECTOR__BASE_DIR: "{{ printf "%s" .Values.api.sidecars.logCollector.workDir | trimSuffix "/" }}/logs" diff --git a/stable/mlrun/values.yaml b/stable/mlrun/values.yaml index 8c077b33f..dfcfc3096 100644 --- a/stable/mlrun/values.yaml +++ b/stable/mlrun/values.yaml @@ -285,6 +285,7 @@ api: logLevel: debug + advancedLogLevel: 0 logFormat: text listenPort: 8282