This commit is contained in:
Chris Lu 2021-02-15 13:38:38 -08:00
parent 8b169aa47c
commit 71f0c19515
4 changed files with 15 additions and 4 deletions

View file

@ -1,5 +1,5 @@
apiVersion: v1 apiVersion: v1
description: SeaweedFS description: SeaweedFS
name: seaweedfs name: seaweedfs
appVersion: "2.25" appVersion: "2.26"
version: 2.25 version: 2.26

View file

@ -4,7 +4,7 @@ global:
registry: "" registry: ""
repository: "" repository: ""
imageName: chrislusf/seaweedfs imageName: chrislusf/seaweedfs
# imageTag: "2.25" - started using {.Chart.appVersion} # imageTag: "2.26" - started using {.Chart.appVersion}
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
imagePullSecrets: imagepullsecret imagePullSecrets: imagepullsecret
restartPolicy: Always restartPolicy: Always

11
weed/filer.toml Normal file
View file

@ -0,0 +1,11 @@
[elastic7]
enabled = true
servers = [
"http://localhost:9200",
]
username = ""
password = ""
sniff_enabled = false
healthcheck_enabled = false
# increase the value is recommend, be sure the value in Elastic is greater or equal here
index.max_result_window = 10000

View file

@ -5,7 +5,7 @@ import (
) )
var ( var (
VERSION = fmt.Sprintf("%s %d.%02d", sizeLimit, 2, 25) VERSION = fmt.Sprintf("%s %d.%02d", sizeLimit, 2, 26)
COMMIT = "" COMMIT = ""
) )