helm chart improvements #425
1 changed files with 2 additions and 4 deletions
|
@ -4,8 +4,6 @@
|
||||||
|
|
||||||
# Garage configuration. These values go to garage.toml
|
# Garage configuration. These values go to garage.toml
|
||||||
garage:
|
garage:
|
||||||
metadataDir: "/mnt/meta"
|
|
||||||
dataDir: "/mnt/data"
|
|
||||||
# Default to 3 replicas, see the replication_mode section at
|
# Default to 3 replicas, see the replication_mode section at
|
||||||
# https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/
|
# https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/
|
||||||
replicationMode: "3"
|
replicationMode: "3"
|
||||||
|
@ -26,8 +24,8 @@ garage:
|
||||||
# Values can be templated
|
# Values can be templated
|
||||||
# ref: https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/
|
# ref: https://garagehq.deuxfleurs.fr/documentation/reference-manual/configuration/
|
||||||
garage.toml: |-
|
garage.toml: |-
|
||||||
metadata_dir = "{{ .Values.garage.metadataDir }}"
|
metadata_dir = "/mnt/meta"
|
||||||
data_dir = "{{ .Values.garage.dataDir }}"
|
data_dir = "/mnt/data"
|
||||||
|
|
||||||
replication_mode = "{{ .Values.garage.replicationMode }}"
|
replication_mode = "{{ .Values.garage.replicationMode }}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue