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 }}