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

xuba pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new cbdc5176b [AMORO-3966][Helm] Support custom volumes and volumeMounts 
(#3965)
cbdc5176b is described below

commit cbdc5176b760b2ab46daa5051f29b72f1fee7175
Author: Abhishek Pathania <[email protected]>
AuthorDate: Thu Nov 27 13:21:36 2025 +0530

    [AMORO-3966][Helm] Support custom volumes and volumeMounts (#3965)
    
    [Improvement][Helm] Support custom volumes and volumeMounts
---
 charts/amoro/templates/_pod.tpl | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/charts/amoro/templates/_pod.tpl b/charts/amoro/templates/_pod.tpl
index 66d581f97..58f489053 100644
--- a/charts/amoro/templates/_pod.tpl
+++ b/charts/amoro/templates/_pod.tpl
@@ -92,6 +92,10 @@ spark distribution package will be installed to here*/ -}}
 - name: spark-install
   mountPath: /opt/spark
 {{- end -}}
+{{- /* additional volume mounts from values */ -}}
+{{- with .Values.volumeMounts }}
+{{- tpl (toYaml .) $ | nindent 0 }}
+{{- end -}}
 {{- end -}}
 {{- /* define amoro.pod.container.mounts end */ -}}
 
@@ -113,6 +117,10 @@ spark distribution package will be installed to here*/ -}}
 - name: spark-install
   emptyDir: {}
 {{- end -}}
+{{- /* additional volumes from values */ -}}
+{{- with .Values.volumes }}
+{{- tpl (toYaml .) $ | nindent 0 }}
+{{- end -}}
 {{- end -}}
 {{- /* define "amoro.pod.volumes" end */ -}}
 

Reply via email to