aboutsummaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-03-08 14:11:02 +0100
committerAlex Auvolat <alex@adnab.me>2024-03-08 14:11:02 +0100
commit44454aac012cbef9158110f2352301ffcfaf31c7 (patch)
tree7e1ff7a536c999811e6c4bf25851434507f4d5f7 /script
parent1ace34adbb05bb10cf7a2c8d0d2b84769ca797df (diff)
downloadgarage-44454aac012cbef9158110f2352301ffcfaf31c7.tar.gz
garage-44454aac012cbef9158110f2352301ffcfaf31c7.zip
[rm-sled] Remove the Sled database engine
Diffstat (limited to 'script')
-rw-r--r--script/helm/garage/values.yaml12
1 files changed, 1 insertions, 11 deletions
diff --git a/script/helm/garage/values.yaml b/script/helm/garage/values.yaml
index 02a6651b..56afa2b2 100644
--- a/script/helm/garage/values.yaml
+++ b/script/helm/garage/values.yaml
@@ -6,18 +6,13 @@
garage:
# Can be changed for better performance on certain systems
# https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/#db-engine-since-v0-8-0
- dbEngine: "sled"
+ dbEngine: "lmdb"
# Defaults is 1MB
# An increase can result in better performance in certain scenarios
# https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/#block-size
blockSize: "1048576"
- # Tuning parameters for the sled DB engine
- # https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/#sled-cache-capacity
- sledCacheCapacity: "134217728"
- sledFlushEveryMs: "2000"
-
# Default to 3 replicas, see the replication_mode section at
# https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/#replication-mode
replicationMode: "3"
@@ -50,11 +45,6 @@ garage:
block_size = {{ .Values.garage.blockSize }}
- {{- if eq .Values.garage.dbEngine "sled"}}
- sled_cache_capacity = {{ .Values.garage.sledCacheCapacity }}
- sled_flush_every_ms = {{ .Values.garage.sledFlushEveryMs }}
- {{- end }}
-
replication_mode = "{{ .Values.garage.replicationMode }}"
compression_level = {{ .Values.garage.compressionLevel }}