aboutsummaryrefslogtreecommitdiff
path: root/script/helm
diff options
context:
space:
mode:
Diffstat (limited to 'script/helm')
-rw-r--r--script/helm/garage/Chart.yaml4
-rw-r--r--script/helm/garage/values.yaml12
2 files changed, 3 insertions, 13 deletions
diff --git a/script/helm/garage/Chart.yaml b/script/helm/garage/Chart.yaml
index 0e157235..f3834fdc 100644
--- a/script/helm/garage/Chart.yaml
+++ b/script/helm/garage/Chart.yaml
@@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
-version: 0.4.2
+version: 0.5.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
-appVersion: "v0.9.4"
+appVersion: "v1.0.0"
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 }}