Fix missing mounts with non-persistent funkwhale
This commit is contained in:
parent
673c64f3a5
commit
54fe5d47af
2 changed files with 3 additions and 5 deletions
|
@ -4,4 +4,4 @@ appVersion: "0.19.1"
|
||||||
description: A social platform to enjoy and share music
|
description: A social platform to enjoy and share music
|
||||||
icon: https://funkwhale.audio/favicon.png
|
icon: https://funkwhale.audio/favicon.png
|
||||||
name: funkwhale
|
name: funkwhale
|
||||||
version: 0.2.1
|
version: 0.2.2
|
||||||
|
|
|
@ -54,7 +54,6 @@ spec:
|
||||||
name: {{ include "funkwhale.fullname" . }}
|
name: {{ include "funkwhale.fullname" . }}
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: {{ include "funkwhale.fullname" . }}
|
name: {{ include "funkwhale.fullname" . }}
|
||||||
{{- if or .Values.persistence.enabled .Values.api.extraVolumeMounts }}
|
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /run/funkwhale
|
- mountPath: /run/funkwhale
|
||||||
name: funkwhale-sock
|
name: funkwhale-sock
|
||||||
|
@ -64,10 +63,9 @@ spec:
|
||||||
name: frontend
|
name: frontend
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /srv/funkwhale/data
|
mountPath: /srv/funkwhale/data
|
||||||
{{- if .Values.extraVolumeMounts }}
|
{{- with .Values.extraVolumeMounts }}
|
||||||
{{ toYaml .Values.extraVolumeMounts | indent 12 }}
|
{{ toYaml . | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.api.resources | nindent 12 }}
|
{{- toYaml .Values.api.resources | nindent 12 }}
|
||||||
- name: nginx
|
- name: nginx
|
||||||
|
|
Loading…
Reference in a new issue