Matt
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
18 additions and
0 deletions
-
k8s/charts/seaweedfs/templates/filer-statefulset.yaml
-
k8s/charts/seaweedfs/values.yaml
|
@ -97,6 +97,12 @@ spec: |
|
|
value: {{ $value | quote }} |
|
|
value: {{ $value | quote }} |
|
|
{{- end }} |
|
|
{{- end }} |
|
|
{{- end }} |
|
|
{{- end }} |
|
|
|
|
|
{{- if .Values.filer.secretExtraEnvironmentVars }} |
|
|
|
|
|
{{- range $key, $value := .Values.filer.secretExtraEnvironmentVars }} |
|
|
|
|
|
- name: {{ $key }} |
|
|
|
|
|
valueFrom: {{ toYaml $value | nindent 16 }} |
|
|
|
|
|
{{- end }} |
|
|
|
|
|
{{- end }} |
|
|
command: |
|
|
command: |
|
|
- "/bin/sh" |
|
|
- "/bin/sh" |
|
|
- "-ec" |
|
|
- "-ec" |
|
|
|
@ -407,6 +407,18 @@ filer: |
|
|
# directories under this folder will be automatically creating a separate bucket |
|
|
# directories under this folder will be automatically creating a separate bucket |
|
|
WEED_FILER_BUCKETS_FOLDER: "/buckets" |
|
|
WEED_FILER_BUCKETS_FOLDER: "/buckets" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# secret env variables |
|
|
|
|
|
secretExtraEnvironmentVars: [] |
|
|
|
|
|
# WEED_POSTGRES_USERNAME: |
|
|
|
|
|
# secretKeyRef: |
|
|
|
|
|
# name: postgres-credentials |
|
|
|
|
|
# key: username |
|
|
|
|
|
# WEED_POSTGRES_PASSWORD: |
|
|
|
|
|
# secretKeyRef: |
|
|
|
|
|
# name: postgres-credentials |
|
|
|
|
|
# key: password |
|
|
|
|
|
|
|
|
s3: |
|
|
s3: |
|
|
enabled: true |
|
|
enabled: true |
|
|
port: 8333 |
|
|
port: 8333 |
|
|