Browse Source

fix issue where filer PVC created even if using existingClaim

pull/5040/head
Max Roby 1 year ago
committed by Chris Lu
parent
commit
4278e9879f
  1. 2
      k8s/charts/seaweedfs/templates/filer-statefulset.yaml

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

@ -314,7 +314,7 @@ spec:
nodeSelector: nodeSelector:
{{ tpl .Values.filer.nodeSelector . | indent 8 | trim }} {{ tpl .Values.filer.nodeSelector . | indent 8 | trim }}
{{- end }} {{- end }}
{{- if .Values.filer.enablePVC }}
{{- if and (.Values.filer.enablePVC) (eq .Values.filer.data.type "persistentVolumeClaim") }}
# DEPRECATION: Deprecate in favor of filer.data section below # DEPRECATION: Deprecate in favor of filer.data section below
volumeClaimTemplates: volumeClaimTemplates:
- metadata: - metadata:

Loading…
Cancel
Save