From 844ef7e89485a5e214d725b82c34139a737e6c06 Mon Sep 17 00:00:00 2001 From: Maarten de Waard <maarten@greenhost.nl> Date: Thu, 6 Oct 2022 12:40:02 +0200 Subject: [PATCH] delete duplicate serviceAccount --- .../helmchart/templates/serviceaccount.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 deployment/helmchart/templates/serviceaccount.yaml diff --git a/deployment/helmchart/templates/serviceaccount.yaml b/deployment/helmchart/templates/serviceaccount.yaml deleted file mode 100644 index 3efda4ea..00000000 --- a/deployment/helmchart/templates/serviceaccount.yaml +++ /dev/null @@ -1,19 +0,0 @@ -{{- if .Values.serviceAccount.create -}} -apiVersion: v1 -kind: ServiceAccount -metadata: - name: {{ include "dashboard.serviceAccountName" . }} - labels: {{- include "common.labels.standard" . | nindent 4 }} - {{- if .Values.commonLabels }} - {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} - {{- end }} - {{- if or .Values.serviceAccount.annotations .Values.commonAnnotations }} - annotations: - {{- if .Values.serviceAccount.annotations }} - {{- toYaml .Values.serviceAccount.annotations | nindent 4 }} - {{- end }} - {{- if .Values.commonAnnotations }} - {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }} - {{- end }} - {{- end }} -{{- end -}} -- GitLab