charts/apache-shardingsphere-operator-charts/templates/operator_rbac.yaml (385 lines of code) (raw):
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ template "operator.name" . }}
namespace: {{ .Release.Namespace }}
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: {{ template "operator.name" . }}
namespace: {{ .Release.Namespace }}
rules:
- apiGroups:
- ""
resources:
- jobs
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- ""
resources:
- configmaps
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- coordination.k8s.io
resources:
- leases
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- ""
resources:
- events
verbs:
- create
- patch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: {{ template "operator.name" . }}
rules:
- apiGroups:
- ""
resources:
- configmaps
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- event
verbs:
- create
- patch
- apiGroups:
- apps
resources:
- deployments
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- apps
resources:
- deployments/status
verbs:
- get
- apiGroups:
- autoscaling
resources:
- horizontalpodautoscalers
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- autoscaling
resources:
- horizontalpodautoscalers/status
verbs:
- get
- apiGroups:
- batch
resources:
- jobs
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- chaos-mesh.org
resources:
- networkchaos
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- chaos-mesh.org
resources:
- podchaos
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- chaos-mesh.org
resources:
- stresschaos
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- configmaps
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- pods
verbs:
- create
- delete
- deletecollection
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- pods/status
verbs:
- get
- apiGroups:
- ""
resources:
- services
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- services/status
verbs:
- get
- apiGroups:
- postgresql.cnpg.io
resources:
- clusters
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- shardingsphere.apache.org
resources:
- chaos
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- shardingsphere.apache.org
resources:
- chaos/finalizers
verbs:
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- chaos/status
verbs:
- get
- patch
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- computenodes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- shardingsphere.apache.org
resources:
- computenodes/status
verbs:
- get
- patch
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- shardingsphereproxies
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- shardingsphere.apache.org
resources:
- shardingsphereproxies/finalizers
verbs:
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- shardingsphereproxies/status
verbs:
- get
- patch
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- shardingsphereproxyserverconfigs
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- shardingsphere.apache.org
resources:
- shardingsphereproxyserverconfigs/finalizers
verbs:
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- shardingsphereproxyserverconfigs/status
verbs:
- get
- patch
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- storagenodes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- shardingsphere.apache.org
resources:
- storagenodes/finalizers
verbs:
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- storagenodes/status
verbs:
- get
- patch
- update
- apiGroups:
- shardingsphere.apache.org
resources:
- storageproviders
verbs:
- get
- list
- watch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: {{ template "operator.name" . }}
namespace: {{ .Release.Namespace }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: {{ template "operator.name" . }}
subjects:
- kind: ServiceAccount
name: {{ template "operator.name" . }}
namespace: {{ .Release.Namespace }}
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: {{ template "operator.name" . }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ template "operator.name" . }}
subjects:
- kind: ServiceAccount
name: {{ template "operator.name" . }}
namespace: {{ .Release.Namespace }}