argocd-helm/charts/argocd-notifications/templates/bots/slack/role.yaml
Jonathan Serafini 7d5d20f615
argocd-notifications: fix serviceaccount name (#389)
* fix: ArgoCD Notifications - Bot service account

* chore: update argocd-notifications version to 1.0.6
2020-06-30 20:31:16 -04:00

27 lines
399 B
YAML

{{ if .Values.bots.slack.enabled }}
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: {{ include "argocd-notifications.name" . }}-bot
rules:
- apiGroups:
- argoproj.io
resources:
- applications
- appprojects
verbs:
- get
- list
- watch
- update
- patch
- apiGroups:
- ""
resources:
- secrets
- configmaps
verbs:
- get
- list
- watch
{{ end }}