From 1876ff047d65cfedc7d143eebea4e958b615dfb4 Mon Sep 17 00:00:00 2001 From: Adam Sulucz Date: Fri, 26 Sep 2025 11:06:16 -0400 Subject: [PATCH] Allow manual volume/mount config --- .../github-actions-cache-server/templates/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install/kubernetes/github-actions-cache-server/templates/deployment.yaml b/install/kubernetes/github-actions-cache-server/templates/deployment.yaml index de2c0e7..c0f9de6 100644 --- a/install/kubernetes/github-actions-cache-server/templates/deployment.yaml +++ b/install/kubernetes/github-actions-cache-server/templates/deployment.yaml @@ -63,6 +63,9 @@ spec: - name: cache-data mountPath: "/app/.data" {{- end }} + {{- with .Values.volumeMounts }} + {{- toYaml . | nindent 12 }} + {{- end }} env: - name: PORT value: "3000" @@ -82,6 +85,9 @@ spec: persistentVolumeClaim: claimName: {{ .Values.persistentVolumeClaim.template.metadata.name }} {{- end }} + {{- with .Values.volumes }} + {{- toYaml . | nindent 8 }} + {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}