You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celeborn.apache.org by zh...@apache.org on 2023/03/08 11:17:13 UTC

[incubator-celeborn] branch main updated: [CELEBORN-384] Fix master-statefulset.yaml syntax error (#1316)

This is an automated email from the ASF dual-hosted git repository.

zhouky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git


The following commit(s) were added to refs/heads/main by this push:
     new 7d43e4dd3 [CELEBORN-384] Fix master-statefulset.yaml syntax error (#1316)
7d43e4dd3 is described below

commit 7d43e4dd3ee03e48590a88d3d227b79e71c0a33d
Author: Fu Chen <cf...@gmail.com>
AuthorDate: Wed Mar 8 19:17:08 2023 +0800

    [CELEBORN-384] Fix master-statefulset.yaml syntax error (#1316)
---
 charts/celeborn/templates/master-statefulset.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/charts/celeborn/templates/master-statefulset.yaml b/charts/celeborn/templates/master-statefulset.yaml
index 9502016ce..5d22d9908 100644
--- a/charts/celeborn/templates/master-statefulset.yaml
+++ b/charts/celeborn/templates/master-statefulset.yaml
@@ -31,7 +31,7 @@ spec:
   selector:
     matchLabels:
       app.kubernetes.io/name: {{ .Chart.Name }}
-      app.kubernetes.io/instance: { { .Release.Name } }
+      app.kubernetes.io/instance: {{ .Release.Name }}
       app.kubernetes.io/version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
       app.kubernetes.io/role: master
       {{- include "celeborn.selectorLabels" . | nindent 6 }}
@@ -45,7 +45,7 @@ spec:
       {{- end }}
       labels:
         app.kubernetes.io/name: {{ .Chart.Name }}
-        app.kubernetes.io/instance: { { .Release.Name } }
+        app.kubernetes.io/instance: {{ .Release.Name }}
         app.kubernetes.io/version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
         app.kubernetes.io/role: master
         {{- include "celeborn.selectorLabels" . | nindent 8 }}