59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
{{- if .Values.workflow.rbac.create -}}
|
|
{{- range $namespace := or .Values.singleNamespace false | ternary (list "") (append .Values.controller.workflowNamespaces (coalesce .Values.workflow.namespace (include "argo-workflows.namespace" .)) | uniq) }}
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: {{ template "argo-workflows.fullname" $ }}-workflow
|
|
labels:
|
|
{{- include "argo-workflows.labels" (dict "context" $ "component" $.Values.controller.name "name" $.Values.controller.name) | nindent 4 }}
|
|
{{- with $namespace }}
|
|
namespace: {{ . }}
|
|
{{- end }}
|
|
rules:
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- pods
|
|
verbs:
|
|
- get
|
|
- watch
|
|
- patch
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- pods/log
|
|
verbs:
|
|
- get
|
|
- watch
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- pods/exec
|
|
verbs:
|
|
- create
|
|
- apiGroups:
|
|
- argoproj.io
|
|
resources:
|
|
- workflowtaskresults
|
|
verbs:
|
|
- create
|
|
- patch
|
|
- apiGroups:
|
|
- argoproj.io
|
|
resources:
|
|
- workflowtasksets
|
|
- workflowartifactgctasks
|
|
verbs:
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- argoproj.io
|
|
resources:
|
|
- workflowtasksets/status
|
|
- workflowartifactgctasks/status
|
|
verbs:
|
|
- patch
|
|
{{- end }}
|
|
|
|
{{- end }}
|