From b69cfcb85705ae4a198e4efee5a963d3c3b34c3e Mon Sep 17 00:00:00 2001 From: Kirill Kamakin Date: Thu, 11 Jun 2026 20:00:59 +0200 Subject: [PATCH] Revert "Enable container command override" This reverts commit ca22543b50ee58dff27cddbe229a0fd87689e95c. --- script/helm/garage/README.md | 2 -- script/helm/garage/templates/workload.yaml | 8 -------- 2 files changed, 10 deletions(-) diff --git a/script/helm/garage/README.md b/script/helm/garage/README.md index d634f2cb..1466c6af 100644 --- a/script/helm/garage/README.md +++ b/script/helm/garage/README.md @@ -15,8 +15,6 @@ S3-compatible object store for small self-hosted geo-distributed deployments | Key | Type | Default | Description | |-----|------|---------|-------------| | affinity | object | `{}` | | -| args | list | `[]` | Override the container arguments. | -| command | list | `[]` | Override the container entrypoint. | | commonLabels | object | `{}` | Extra labels for all resources | | deployment.kind | string | `"StatefulSet"` | Switchable to DaemonSet | | deployment.podManagementPolicy | string | `"OrderedReady"` | If using statefulset, allow Parallel or OrderedReady (default) | diff --git a/script/helm/garage/templates/workload.yaml b/script/helm/garage/templates/workload.yaml index b3771d30..1283d245 100644 --- a/script/helm/garage/templates/workload.yaml +++ b/script/helm/garage/templates/workload.yaml @@ -59,14 +59,6 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} - {{- with .Values.command }} - command: - {{- toYaml . | nindent 12 }} - {{- end }} - {{- with .Values.args }} - args: - {{- toYaml . | nindent 12 }} - {{- end }} ports: - containerPort: {{ include "garage.portFromBindAddr" .Values.garage.s3.api.bindAddr | int }} name: s3-api