23 lines
575 B
YAML
23 lines
575 B
YAML
|
{{- if .Values.createClusterRoles }}
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
kind: ClusterRole
|
||
|
metadata:
|
||
|
name: {{ include "argo-cd.notifications.fullname" . }}
|
||
|
labels:
|
||
|
{{- include "argo-cd.labels" (dict "context" . "component" .Values.notifications.name "name" .Values.notifications.name) | nindent 4 }}
|
||
|
rules:
|
||
|
{{- with .Values.notifications.clusterRoleRules.rules }}
|
||
|
{{- toYaml . | nindent 2 }}
|
||
|
{{- end }}
|
||
|
- apiGroups:
|
||
|
- "argoproj.io"
|
||
|
resources:
|
||
|
- "applications"
|
||
|
verbs:
|
||
|
- get
|
||
|
- list
|
||
|
- watch
|
||
|
- update
|
||
|
- patch
|
||
|
{{- end }}
|