Files
homelab/k8s/infra/rbac/portainer-operator-role.yaml
T

28 lines
747 B
YAML
Raw Normal View History

# Scoped operator access for portainer-admins: just the Deployment - no
# configmap/secret exists for portainer today. Inert until kube-apiserver's
# OIDC wiring lands.
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: portainer-operator
namespace: dashboard
rules:
- apiGroups: ["apps"]
resources: ["deployments"]
resourceNames: ["portainer"]
verbs: ["get", "list", "watch", "update", "patch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: portainer-admins-binding
namespace: dashboard
subjects:
- kind: Group
name: "oidc:portainer-admins"
apiGroup: rbac.authorization.k8s.io
roleRef:
kind: Role
name: portainer-operator
apiGroup: rbac.authorization.k8s.io