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

liuhan pushed a commit to branch backup-lifecycle-resource
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-helm.git


The following commit(s) were added to refs/heads/backup-lifecycle-resource by 
this push:
     new 8666aa3  fix wrong format of backup/lifecycle resource
8666aa3 is described below

commit 8666aa375facae605a37e842392b820f177bdb87
Author: mrproliu <[email protected]>
AuthorDate: Mon Jan 26 19:14:15 2026 +0800

    fix wrong format of backup/lifecycle resource
---
 chart/templates/cluster_data_statefulset.yaml | 40 +++++++++++++--------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/chart/templates/cluster_data_statefulset.yaml 
b/chart/templates/cluster_data_statefulset.yaml
index 93e4483..7d7f021 100644
--- a/chart/templates/cluster_data_statefulset.yaml
+++ b/chart/templates/cluster_data_statefulset.yaml
@@ -118,15 +118,15 @@ spec:
             {{- if eq $claim.nodeRole $roleName }}
             {{- if $claim.existingClaimName }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.existingClaimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- else }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.claimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- end }}
             {{- end }}
@@ -267,15 +267,15 @@ spec:
             {{- if eq $claim.nodeRole $roleName }}
             {{- if $claim.existingClaimName }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.existingClaimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- else }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.claimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- end }}
             {{- end }}
@@ -364,15 +364,15 @@ spec:
             {{- if eq $claim.nodeRole $roleName }}
             {{- if $claim.existingClaimName }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.existingClaimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- else }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.claimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- end }}
             {{- end }}
@@ -428,15 +428,15 @@ spec:
             {{- if eq $claim.nodeRole $roleName }}
             {{- if $claim.existingClaimName }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.existingClaimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- else }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.claimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- end }}
             {{- end }}
@@ -468,15 +468,15 @@ spec:
             {{- if eq $claim.nodeRole $roleName }}
             {{- if $claim.existingClaimName }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.existingClaimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- else }}
             {{- range $claim.mountTargets }}
-            - mountPath: "/tmp/{{ . }}"
+            - mountPath: /tmp/{{ . }}
               name: {{ $claim.claimName }}
-              subPath: {{ . | quote }}
+              subPath: {{ . }}
             {{- end }}
             {{- end }}
             {{- end }}

Reply via email to