diff options
author | chemicstry <chemicstry@gmail.com> | 2022-06-20 15:52:43 +0300 |
---|---|---|
committer | Maximilien R <maximilien@deuxfleurs.fr> | 2022-09-30 18:46:57 +0200 |
commit | a93dcce84196bb8ffc8cef091d1343597b15b9a6 (patch) | |
tree | d14aad0abde74d453f590fe2ac0556a66ee8c6e4 /script/helm/garage/templates/configmap.yaml | |
parent | b17d59cfabbe92c509f4888cae83f6053a8cab1e (diff) | |
download | garage-a93dcce84196bb8ffc8cef091d1343597b15b9a6.tar.gz garage-a93dcce84196bb8ffc8cef091d1343597b15b9a6.zip |
Add helm chart
Diffstat (limited to 'script/helm/garage/templates/configmap.yaml')
-rw-r--r-- | script/helm/garage/templates/configmap.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/script/helm/garage/templates/configmap.yaml b/script/helm/garage/templates/configmap.yaml new file mode 100644 index 00000000..587746f6 --- /dev/null +++ b/script/helm/garage/templates/configmap.yaml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "garage.fullname" . }}-config +data: + garage.toml: |- + metadata_dir = "{{ .Values.garage.metadataDir }}" + data_dir = "{{ .Values.garage.dataDir }}" + + replication_mode = "{{ .Values.garage.replicationMode }}" + + rpc_bind_addr = "{{ .Values.garage.rpcBindAddr }}" + rpc_secret = "{{ .Values.garage.rpcSecret }}" + + bootstrap_peers = {{ .Values.garage.bootstrapPeers }} + + kubernetes_namespace = "{{ .Release.Namespace }}" + kubernetes_service_name = "{{ include "garage.fullname" . }}" + kubernetes_skip_crd = {{ .Values.garage.kubernetesSkipCrd }} + + [s3_api] + s3_region = "{{ .Values.garage.s3.api.region }}" + api_bind_addr = "[::]:3900" + root_domain = "{{ .Values.garage.s3.api.rootDomain }}" + + [s3_web] + bind_addr = "[::]:3902" + root_domain = "{{ .Values.garage.s3.web.rootDomain }}" + index = "{{ .Values.garage.s3.web.index }}"
\ No newline at end of file |