mirror of
https://github.com/plausible/hosting.git
synced 2025-07-04 02:57:29 -05:00
Add extra volume mounts
This commit is contained in:
@ -300,6 +300,9 @@ spec:
|
||||
volumeMounts:
|
||||
- name: app-tmp
|
||||
mountPath: /app/tmp
|
||||
{{- if .Values.extraVolumeMounts }}
|
||||
{{- toYaml .Values.extraVolumeMounts | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
@ -313,5 +316,8 @@ spec:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
volumes:
|
||||
- name: app-tmp
|
||||
emptyDir: {}
|
||||
- name: app-tmp
|
||||
emptyDir: {}
|
||||
{{- if .Values.extraVolumes }}
|
||||
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
||||
{{- end }}
|
||||
|
Reference in New Issue
Block a user