mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #1214 from LazyDBA247-Anyvision/add-k8s-helm-chart
FILER/S3: filer Dir Buckets
This commit is contained in:
commit
1f31295a2b
|
@ -75,7 +75,6 @@ spec:
|
||||||
-cert.file=/usr/local/share/ca-certificates/client/tls.crt \
|
-cert.file=/usr/local/share/ca-certificates/client/tls.crt \
|
||||||
-key.file=/usr/local/share/ca-certificates/client/tls.key \
|
-key.file=/usr/local/share/ca-certificates/client/tls.key \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
-filer.dir.buckets={{ .Values.s3.filerDirBuckets }} \
|
|
||||||
{{- if .Values.s3.domainName }}
|
{{- if .Values.s3.domainName }}
|
||||||
-domainName={{ .Values.s3.domainName }} \
|
-domainName={{ .Values.s3.domainName }} \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
||||||
"helm.sh/resource-policy": keep
|
"helm.sh/resource-policy": keep
|
||||||
"helm.sh/hook": "pre-install"
|
"helm.sh/hook": "pre-install"
|
||||||
stringData:
|
stringData:
|
||||||
user: {{ "YourSWUser" | b64enc }}
|
user: "YourSWUser"
|
||||||
password: "HardCodedPassword"
|
password: "HardCodedPassword"
|
||||||
# better to random generate and create in DB
|
# better to random generate and create in DB
|
||||||
# password: {{ randAlphaNum 10 | sha256sum | b64enc | trunc 32 }}
|
# password: {{ randAlphaNum 10 | sha256sum | b64enc | trunc 32 }}
|
||||||
|
|
|
@ -249,7 +249,7 @@ filer:
|
||||||
WEED_MYSQL_ENABLED: "true"
|
WEED_MYSQL_ENABLED: "true"
|
||||||
WEED_MYSQL_HOSTNAME: "mysql-db-host"
|
WEED_MYSQL_HOSTNAME: "mysql-db-host"
|
||||||
WEED_MYSQL_PORT: "3306"
|
WEED_MYSQL_PORT: "3306"
|
||||||
WEED_MYSQL_DATABASE: "sw-database"
|
WEED_MYSQL_DATABASE: "sw_database"
|
||||||
WEED_MYSQL_CONNECTION_MAX_IDLE: "10"
|
WEED_MYSQL_CONNECTION_MAX_IDLE: "10"
|
||||||
WEED_MYSQL_CONNECTION_MAX_OPEN: "150"
|
WEED_MYSQL_CONNECTION_MAX_OPEN: "150"
|
||||||
# enable usage of memsql as filer backend
|
# enable usage of memsql as filer backend
|
||||||
|
@ -273,9 +273,6 @@ s3:
|
||||||
port: 8333
|
port: 8333
|
||||||
loggingOverrideLevel: null
|
loggingOverrideLevel: null
|
||||||
|
|
||||||
# Folder on filer to store all buckets (default "/buckets")
|
|
||||||
filerDirBuckets: "/buckets"
|
|
||||||
|
|
||||||
# Suffix of the host name, {bucket}.{domainName}
|
# Suffix of the host name, {bucket}.{domainName}
|
||||||
domainName: ""
|
domainName: ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue