aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-10-18 22:30:05 +0200
committerAlex Auvolat <alex@adnab.me>2022-10-18 22:30:05 +0200
commitd6c77ea3271b890f08980efeba4ddaa935ef353b (patch)
treeb7eb10043d96a316ec5992884c0a8ac546dea0b0
parent52547506586c10cd8200fbdf6112dd53663e5200 (diff)
downloadgarage-d6c77ea3271b890f08980efeba4ddaa935ef353b.tar.gz
garage-d6c77ea3271b890f08980efeba4ddaa935ef353b.zip
Fix helm chart with correct configuration syntaxfix-helm-chart
-rw-r--r--script/helm/garage/templates/configmap.yaml9
1 files changed, 5 insertions, 4 deletions
diff --git a/script/helm/garage/templates/configmap.yaml b/script/helm/garage/templates/configmap.yaml
index e33a4dbd..bfcd5d8c 100644
--- a/script/helm/garage/templates/configmap.yaml
+++ b/script/helm/garage/templates/configmap.yaml
@@ -15,9 +15,10 @@ data:
bootstrap_peers = {{ .Values.garage.bootstrapPeers }}
- kubernetes_namespace = "{{ .Release.Namespace }}"
- kubernetes_service_name = "{{ include "garage.fullname" . }}"
- kubernetes_skip_crd = {{ .Values.garage.kubernetesSkipCrd }}
+ [kubernetes_discovery]
+ namespace = "{{ .Release.Namespace }}"
+ service_name = "{{ include "garage.fullname" . }}"
+ skip_crd = {{ .Values.garage.kubernetesSkipCrd }}
[s3_api]
s3_region = "{{ .Values.garage.s3.api.region }}"
@@ -27,4 +28,4 @@ data:
[s3_web]
bind_addr = "[::]:3902"
root_domain = "{{ .Values.garage.s3.web.rootDomain }}"
- index = "{{ .Values.garage.s3.web.index }}" \ No newline at end of file
+ index = "{{ .Values.garage.s3.web.index }}"