From fe42b03548bdfe5806fa6181edef37548e096f66 Mon Sep 17 00:00:00 2001 From: hhhhsc701 <56435672+hhhhsc701@users.noreply.github.com> Date: Fri, 28 Nov 2025 17:39:56 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20milvus=E9=83=A8=E5=88=86=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E6=94=AF=E6=8C=81=E9=95=9C=E5=83=8F=E4=BB=93=E5=BA=93?= =?UTF-8?q?=20(#114)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deployment/helm/datamate/charts/ray-cluster/values.yaml | 2 +- deployment/helm/milvus/charts/minio/templates/deployment.yaml | 2 +- deployment/helm/milvus/charts/minio/values.yaml | 3 +++ deployment/helm/milvus/templates/streamingnode-deployment.yaml | 2 +- deployment/helm/milvus/values.yaml | 3 +++ 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/deployment/helm/datamate/charts/ray-cluster/values.yaml b/deployment/helm/datamate/charts/ray-cluster/values.yaml index 7627f0f..9e7c650 100644 --- a/deployment/helm/datamate/charts/ray-cluster/values.yaml +++ b/deployment/helm/datamate/charts/ray-cluster/values.yaml @@ -97,7 +97,7 @@ head: limits: cpu: "2" # To avoid out-of-memory issues, never allocate less than 2G memory for the Ray head. - memory: "4G" + memory: "8G" requests: cpu: "1" memory: "2G" diff --git a/deployment/helm/milvus/charts/minio/templates/deployment.yaml b/deployment/helm/milvus/charts/minio/templates/deployment.yaml index ffa880b..b8e8ad5 100644 --- a/deployment/helm/milvus/charts/minio/templates/deployment.yaml +++ b/deployment/helm/milvus/charts/minio/templates/deployment.yaml @@ -72,7 +72,7 @@ spec: {{- end }} containers: - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + image: "{{ .Values.global.imageRegistry }}{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} {{- if .Values.s3gateway.enabled }} command: diff --git a/deployment/helm/milvus/charts/minio/values.yaml b/deployment/helm/milvus/charts/minio/values.yaml index 8ec27e2..949e012 100644 --- a/deployment/helm/milvus/charts/minio/values.yaml +++ b/deployment/helm/milvus/charts/minio/values.yaml @@ -10,6 +10,9 @@ fullnameOverride: "" ## clusterDomain: cluster.local +global: + imageRegistry: "" + ## Set default image, imageTag, and imagePullPolicy. mode is used to indicate the ## image: diff --git a/deployment/helm/milvus/templates/streamingnode-deployment.yaml b/deployment/helm/milvus/templates/streamingnode-deployment.yaml index d7d241b..87f1921 100644 --- a/deployment/helm/milvus/templates/streamingnode-deployment.yaml +++ b/deployment/helm/milvus/templates/streamingnode-deployment.yaml @@ -69,7 +69,7 @@ spec: {{- end }} containers: - name: streamingnode - image: "{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}" + image: "{{ .Values.global.imageRegistry }}{{ .Values.image.all.repository }}:{{ .Values.image.all.tag }}" imagePullPolicy: {{ .Values.image.all.pullPolicy }} {{ if and (.Values.containerSecurityContext) (not .Values.streamingNode.containerSecurityContext) }} securityContext: diff --git a/deployment/helm/milvus/values.yaml b/deployment/helm/milvus/values.yaml index 3731964..584cdcc 100644 --- a/deployment/helm/milvus/values.yaml +++ b/deployment/helm/milvus/values.yaml @@ -8,6 +8,9 @@ fullnameOverride: "" cluster: enabled: false +global: + imageRegistry: "" + image: all: repository: milvusdb/milvus