diff --git a/manifests/cluster-rbac/server/argocd-server-clusterrole.yaml b/manifests/cluster-rbac/server/argocd-server-clusterrole.yaml index 779e674a608c9..f81f529086fb5 100644 --- a/manifests/cluster-rbac/server/argocd-server-clusterrole.yaml +++ b/manifests/cluster-rbac/server/argocd-server-clusterrole.yaml @@ -36,3 +36,15 @@ rules: - get - list - watch +- apiGroups: + - batch + resources: + - jobs + verbs: + - create # supports triggering jobs from UI +- apiGroups: + - argoproj.io + resources: + - workflows + verbs: + - create # supports triggering workflows from UI diff --git a/manifests/ha/install.yaml b/manifests/ha/install.yaml index c5f45e932a4eb..fa28f54525ddf 100644 --- a/manifests/ha/install.yaml +++ b/manifests/ha/install.yaml @@ -18781,6 +18781,18 @@ rules: - get - list - watch +- apiGroups: + - batch + resources: + - jobs + verbs: + - create +- apiGroups: + - argoproj.io + resources: + - workflows + verbs: + - create --- apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding diff --git a/manifests/install.yaml b/manifests/install.yaml index b48239ab5c714..26bcf70b92ff3 100644 --- a/manifests/install.yaml +++ b/manifests/install.yaml @@ -18740,6 +18740,18 @@ rules: - get - list - watch +- apiGroups: + - batch + resources: + - jobs + verbs: + - create +- apiGroups: + - argoproj.io + resources: + - workflows + verbs: + - create --- apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding