Browse Source
fix(chart): use hostpath filer persistence when deprecated enablePVC is unset (#4384)
pull/4385/head
samcday
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 }} |
|
|
|