From 88a326bacdffde9e065b08ba893a17149584e72e Mon Sep 17 00:00:00 2001 From: Saumit Date: Sat, 11 Oct 2025 02:34:38 +0530 Subject: platform: Adding argocd helm chart --- .../templates/redis-ha-serviceaccount.yaml | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 astroshop-platform/argocd-helmchart/charts/redis-ha/templates/redis-ha-serviceaccount.yaml (limited to 'astroshop-platform/argocd-helmchart/charts/redis-ha/templates/redis-ha-serviceaccount.yaml') diff --git a/astroshop-platform/argocd-helmchart/charts/redis-ha/templates/redis-ha-serviceaccount.yaml b/astroshop-platform/argocd-helmchart/charts/redis-ha/templates/redis-ha-serviceaccount.yaml new file mode 100644 index 0000000..9e1b21e --- /dev/null +++ b/astroshop-platform/argocd-helmchart/charts/redis-ha/templates/redis-ha-serviceaccount.yaml @@ -0,0 +1,31 @@ +{{- if .Values.serviceAccount.create }} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ template "redis-ha.serviceAccountName" . }} + namespace: {{ .Release.Namespace | quote }} + labels: + heritage: {{ .Release.Service }} + release: {{ .Release.Name }} + chart: {{ .Chart.Name }}-{{ .Chart.Version }} + app: {{ template "redis-ha.fullname" . }} + {{- range $key, $value := .Values.extraLabels }} + {{ $key }}: {{ $value | quote }} + {{- end }} +{{- if .Values.serviceAccount.annotations }} + annotations: +{{ toYaml .Values.serviceAccount.annotations | indent 4 }} +{{- end }} +{{- if or .Values.auth .Values.sentinel.auth }} +secrets: +{{- end }} +{{- if .Values.auth }} +- name: {{ default (include "redis-ha.fullname" .) .Values.existingSecret }} +{{- end }} +{{- if .Values.sentinel.auth }} +- name: {{ default (printf "%s-sentinel" (include "redis-ha.fullname" .)) .Values.sentinel.existingSecret }} +{{- end }} +{{- if .Values.imagePullSecrets }} +imagePullSecrets: {{ toYaml .Values.imagePullSecrets | nindent 0 }} +{{- end }} +{{- end }} -- cgit v1.2.3