blob: 09197f3401ff9dfc32f7cabfcf03753883e2493b [file] [log] [blame]
Amit Wankhede38437412021-11-22 11:11:07 -06001# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
Amit Wankhede38437412021-11-22 11:11:07 -06004
5kind: ClusterRole
6apiVersion: rbac.authorization.k8s.io/v1
7metadata:
8 namespace: {{ .Release.Namespace }}
9 name: {{ template "subscriber-proxy.fullname" . }}-secret-reader-role
10rules:
11 - apiGroups: [""] # "" indicates the core API group
12 resources: ["secrets"]
13 verbs: ["get", "watch", "list"]