From a4ee7529d94bf4186bd86fe63086003af7f083e5 Mon Sep 17 00:00:00 2001 From: royischoss Date: Tue, 24 Feb 2026 13:40:07 +0200 Subject: [PATCH 1/3] Remove v3io from MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__USER_SPACE and MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__MONITORING_APPLICATION plus removes MLRUN_MODEL_ENDPOINT_MONITORING__ENDPOINT_STORE_CONNECTION --- charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml b/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml index a284aa5c..e6221ad3 100644 --- a/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml +++ b/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml @@ -17,13 +17,14 @@ data: MLRUN_HTTPDB__REAL_PATH: s3:// MLRUN_ARTIFACT_PATH: s3://{{ $bucket_name }}/projects/{{ `{{run.project}}` }}/artifacts MLRUN_FEATURE_STORE__DATA_PREFIXES__DEFAULT: s3://{{ $bucket_name }}/projects/{project}/FeatureStore/{name}/{kind} + MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__USER_SPACE: s3://{{ $bucket_name }}/projects/{project}/model-endpoints/{kind} + MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__MONITORING_APPLICATION: s3://{{ $bucket_name }}/users/pipelines/{project}/monitoring-apps/ MLRUN_FEATURE_STORE__DATA_PREFIXES__NOSQL: "" MLRUN_CE__MODE: {{ .Values.mlrun.ce.mode }} MLRUN_CE__VERSION: {{ .Chart.Version }} MLRUN_DEFAULT_TENSORBOARD_LOGS_PATH: /home/jovyan/data/tensorboard/{{ `{{project}} `}} MLRUN_FEATURE_STORE__DEFAULT_TARGETS: parquet MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__DEFAULT: s3://{{ $bucket_name }}/projects/{{ `{{project}}` }}/model-endpoints/{{ `{{kind}}` }} - MLRUN_MODEL_ENDPOINT_MONITORING__ENDPOINT_STORE_CONNECTION: "{{ template "mlrun-ce.mlrun.modelMonitoring.DSN" . }}" MLRUN_GRAFANA_URL: http://{{ .Values.global.externalHostAddress }}:{{ index .Values "kube-prometheus-stack" "grafana" "service" "nodePort" }} MLRUN_DEFAULT_FUNCTION_POD_RESOURCES__LIMITS__CPU: "{{ .Values.mlrun.defaultFunctionPodResources.limits.cpu | default "" }}" MLRUN_DEFAULT_FUNCTION_POD_RESOURCES__LIMITS__MEMORY: "{{ .Values.mlrun.defaultFunctionPodResources.limits.memory | default "" }}" From ce7601ea112a83aedee03d537063ee546ca06ee9 Mon Sep 17 00:00:00 2001 From: royischoss Date: Wed, 25 Feb 2026 11:59:29 +0200 Subject: [PATCH 2/3] fix formating --- charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml b/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml index e6221ad3..f37779e5 100644 --- a/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml +++ b/charts/mlrun-ce/templates/config/mlrun-env-configmap.yaml @@ -17,8 +17,8 @@ data: MLRUN_HTTPDB__REAL_PATH: s3:// MLRUN_ARTIFACT_PATH: s3://{{ $bucket_name }}/projects/{{ `{{run.project}}` }}/artifacts MLRUN_FEATURE_STORE__DATA_PREFIXES__DEFAULT: s3://{{ $bucket_name }}/projects/{project}/FeatureStore/{name}/{kind} - MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__USER_SPACE: s3://{{ $bucket_name }}/projects/{project}/model-endpoints/{kind} - MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__MONITORING_APPLICATION: s3://{{ $bucket_name }}/users/pipelines/{project}/monitoring-apps/ + MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__USER_SPACE: s3://{{ $bucket_name }}/projects/{{ `{{project}}` }}/model-endpoints/{{ `{{kind}}` }} + MLRUN_MODEL_ENDPOINT_MONITORING__STORE_PREFIXES__MONITORING_APPLICATION: s3://{{ $bucket_name }}/users/pipelines/{{ `{{project}}` }}/monitoring-apps/ MLRUN_FEATURE_STORE__DATA_PREFIXES__NOSQL: "" MLRUN_CE__MODE: {{ .Values.mlrun.ce.mode }} MLRUN_CE__VERSION: {{ .Chart.Version }} From 061e2a482dccb8fff2577cd9872f8990225eef56 Mon Sep 17 00:00:00 2001 From: royischoss Date: Wed, 25 Feb 2026 14:44:40 +0200 Subject: [PATCH 3/3] fix version and remove deprecated dsn --- charts/mlrun-ce/Chart.yaml | 2 +- charts/mlrun-ce/templates/_helpers.tpl | 13 ------------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/charts/mlrun-ce/Chart.yaml b/charts/mlrun-ce/Chart.yaml index 92bc7cb0..eb248c10 100644 --- a/charts/mlrun-ce/Chart.yaml +++ b/charts/mlrun-ce/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mlrun-ce -version: 0.11.0-rc9 +version: 0.11.0-rc.12 description: MLRun Open Source Stack home: https://iguazio.com icon: https://www.iguazio.com/wp-content/uploads/2019/10/Iguazio-Logo.png diff --git a/charts/mlrun-ce/templates/_helpers.tpl b/charts/mlrun-ce/templates/_helpers.tpl index 27f76052..069e4e10 100644 --- a/charts/mlrun-ce/templates/_helpers.tpl +++ b/charts/mlrun-ce/templates/_helpers.tpl @@ -286,19 +286,6 @@ Pipelines labels {{ include "mlrun-ce.pipelines.selectorLabels" . }} {{- end -}} -{{/* -Model monitoring DSN -*/}} -{{- define "mlrun-ce.mlrun.modelMonitoring.DSN" -}} -{{- if .Values.mlrun.modelMonitoring.dsn -}} -{{ .Values.mlrun.modelMonitoring.dsn }} -{{- else -}} -{{- if eq "mysql" .Values.mlrun.httpDB.dbType -}} -{{ .Values.mlrun.httpDB.dsn }}_model_monitoring -{{- end -}} -{{- end -}} -{{- end -}} - {{/* TimescaleDB helpers */}}