From d4b2e7a619ffe94f7a2bc928b8efd4e85b6ee0b7 Mon Sep 17 00:00:00 2001 From: Frederic Leger Date: Tue, 19 Mar 2024 15:09:25 +0100 Subject: [PATCH] fix(helm): use a fixed container name (#9) --- helm/chart/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/chart/templates/deployment.yaml b/helm/chart/templates/deployment.yaml index 3e367c7..11c596c 100644 --- a/helm/chart/templates/deployment.yaml +++ b/helm/chart/templates/deployment.yaml @@ -29,7 +29,7 @@ spec: securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - - name: {{ .Chart.Name }} + - name: snapshoter securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"