From f17990f7462165af07574a6f234adeeeca7800ab Mon Sep 17 00:00:00 2001 From: Juri Malinovski Date: Mon, 22 Dec 2025 14:25:23 +0200 Subject: [PATCH] helm: allow to define additional config variables (#1220) Signed-off-by: Juri Malinovski --- helm/rustfs/templates/statefulset.yaml | 3 --- helm/rustfs/values.yaml | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/helm/rustfs/templates/statefulset.yaml b/helm/rustfs/templates/statefulset.yaml index 432443ff8..a9b07b549 100644 --- a/helm/rustfs/templates/statefulset.yaml +++ b/helm/rustfs/templates/statefulset.yaml @@ -115,9 +115,6 @@ spec: name: endpoint - containerPort: {{ .Values.service.console_port }} name: console - env: - - name: REPLICA_COUNT - value: {{ .Values.replicaCount | quote }} envFrom: - configMapRef: name: {{ include "rustfs.fullname" . }}-config diff --git a/helm/rustfs/values.yaml b/helm/rustfs/values.yaml index 4e669a724..898e17cdf 100644 --- a/helm/rustfs/values.yaml +++ b/helm/rustfs/values.yaml @@ -124,7 +124,7 @@ ingress: paths: - path: / pathType: Prefix - tls: + tls: enabled: false # Enable tls and access rustfs via https. certManager: enabled: false # Enable certmanager to generate certificate for rustfs, default false.