13 lines
335 B
YAML
13 lines
335 B
YAML
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
# "namespace" omitted since ClusterRoles are not namespaced
|
|
name: secret-reader
|
|
rules:
|
|
- apiGroups: [""]
|
|
#
|
|
# at the HTTP level, the name of the resource for accessing Secret
|
|
# objects is "secrets"
|
|
resources: ["secrets"]
|
|
verbs: ["get", "watch", "list"]
|