fix: ArgoCD Notifications - Bot service account

This commit is contained in:
Jonathan Serafini 2020-06-29 18:53:15 -04:00
parent 5ca92acda0
commit 0626ac5e7a
No known key found for this signature in database
GPG key ID: 74233649A5385798
5 changed files with 14 additions and 3 deletions

View file

@ -87,7 +87,7 @@ Create the name of the bot service account to use
*/}}
{{- define "argocd-notifications.bots.slack.serviceAccountName" -}}
{{- if .Values.bots.slack.serviceAccount.create -}}
{{ default (include "argocd-notifications.fullname" .) .Values.bots.slack.serviceAccount.name }}
{{ default (printf "%s-bot" (include "argocd-notifications.fullname" .)) .Values.bots.slack.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.bots.slack.serviceAccount.name }}
{{- end -}}

View file

@ -20,7 +20,7 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "argocd-notifications.serviceAccountName" . }}-bot
serviceAccountName: {{ include "argocd-notifications.bots.slack.serviceAccountName" . }}
containers:
- name: {{ include "argocd-notifications.name" . }}-bot
image: "{{ .Values.bots.slack.image.repository }}:{{ .Values.bots.slack.image.tag }}"

View file

@ -15,4 +15,13 @@ rules:
- watch
- update
- patch
- apiGroups:
- ""
resources:
- secrets
- configmaps
verbs:
- get
- list
- watch
{{ end }}

View file

@ -1,4 +1,4 @@
{{ if and .Values.bots.slack.enabled .Values.secret.create }}
{{- if .Values.bots.slack.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:

View file

@ -1,6 +1,8 @@
{{- if .Values.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "argocd-notifications.serviceAccountName" . }}
labels:
{{- include "argocd-notifications.labels" . | nindent 4 }}
{{- end }}