blob: 9bb4fa6eb6797d4f3bd3be821f37afce906ced45 [file] [log] [blame]
---
# Copyright 2018-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# For more information, see documentation:
# https://rook.io/docs/rook/v0.8/rbac.html
# https://github.com/rook/rook/blob/master/cluster/examples/kubernetes/ceph/cluster.yaml
apiVersion: v1
kind: Namespace
metadata:
name: {{ .Values.rookClusterNamespace }}
---
# Next 3 items: Allow the pods in this namespace to work with configmaps
apiVersion: v1
kind: ServiceAccount
metadata:
name: rook-ceph-cluster
namespace: {{ .Values.rookClusterNamespace }}
---
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: rook-ceph-cluster
namespace: {{ .Values.rookClusterNamespace }}
rules:
- apiGroups: [""]
resources: ["configmaps"]
verbs: [ "get", "list", "watch", "create", "update", "delete" ]
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: rook-ceph-cluster
namespace: {{ .Values.rookClusterNamespace }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: rook-ceph-cluster
subjects:
- kind: ServiceAccount
name: rook-ceph-cluster
namespace: {{ .Values.rookClusterNamespace }}
---
# Allow the operator to create resources in this cluster's namespace
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: rook-ceph-cluster-mgmt
namespace: {{ .Values.rookClusterNamespace }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: rook-ceph-cluster-mgmt
subjects:
- kind: ServiceAccount
name: rook-ceph-system
namespace: {{ .Values.rookSystemNamespace }}