apiVersion: v1 kind: ServiceAccount metadata: name: argo-workflow namespace: argo --- apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: name: argo-workflow-role namespace: argo rules: # Allow managing Deployments - apiGroups: ["apps"] resources: ["deployments"] verbs: ["get", "list", "create", "update", "patch", "delete"] # Allow managing Services - apiGroups: [""] resources: ["services"] verbs: ["get", "list", "create", "update", "patch", "delete"] # Allow managing Traefik IngressRoutes - apiGroups: ["traefik.io"] resources: ["ingressroutes"] verbs: ["get", "list", "create", "update", "patch", "delete"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: argo-workflow-rolebinding namespace: argo subjects: - kind: ServiceAccount name: argo-workflow namespace: argo roleRef: kind: Role name: argo-workflow-role apiGroup: rbac.authorization.k8s.io