18 lines
523 B
YAML
18 lines
523 B
YAML
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: tekton-pipelines-info
|
|
namespace: tekton-pipelines
|
|
labels:
|
|
app.kubernetes.io/instance: default
|
|
app.kubernetes.io/part-of: tekton-pipelines
|
|
subjects:
|
|
# Giving all system:authenticated users the access of the
|
|
# ConfigMap which contains version information.
|
|
- kind: Group
|
|
name: system:authenticated
|
|
apiGroup: rbac.authorization.k8s.io
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: tekton-pipelines-info |