From bd6039f53b33c1c0f41f49b60711430898c90acd Mon Sep 17 00:00:00 2001 From: Heracles <2678785492@qq.com> Date: Mon, 22 Jun 2026 09:28:36 +0800 Subject: [PATCH] fix(helm): use Chart.Version as default plugin-server image tag (#3998) Signed-off-by: yqz <2678785492@qq.com> Co-authored-by: Claude Opus 4.6 --- helm/core/templates/plugin-server-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/core/templates/plugin-server-deployment.yaml b/helm/core/templates/plugin-server-deployment.yaml index d0c4aa883..69607fb0c 100644 --- a/helm/core/templates/plugin-server-deployment.yaml +++ b/helm/core/templates/plugin-server-deployment.yaml @@ -23,7 +23,7 @@ spec: {{- end }} containers: - name: {{ .Chart.Name }} - image: {{ .Values.pluginServer.hub | default .Values.global.hub }}/higress/{{ .Values.pluginServer.image | default "plugin-server" }}:{{ .Values.pluginServer.tag | default "1.0.0" }} + image: {{ .Values.pluginServer.hub | default .Values.global.hub }}/higress/{{ .Values.pluginServer.image | default "plugin-server" }}:{{ .Values.pluginServer.tag | default .Chart.Version }} {{- if .Values.pluginServer.imagePullPolicy }} imagePullPolicy: {{ .Values.pluginServer.imagePullPolicy }} {{- else if .Values.global.imagePullPolicy }}