Browse Source

fix(chart): use hostpath filer persistence when deprecated enablePVC is unset (#4384)

pull/4385/head
samcday 2 years ago
committed by GitHub
parent
commit
adf80dc3f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      k8s/charts/seaweedfs/templates/filer-statefulset.yaml

2
k8s/charts/seaweedfs/templates/filer-statefulset.yaml

@ -175,7 +175,7 @@ spec:
- mountPath: /etc/sw
name: config-users
readOnly: true
{{- if .Values.filer.enablePVC }}
{{- if (or .Values.filer.enablePVC (eq .Values.filer.data.type "hostPath")) }}
- name: data-filer
mountPath: /data
{{- end }}

Loading…
Cancel
Save