deploy/nuvolaris-permissions/operator-clusterroles.yaml (72 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. # --- kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata: name: nuvolaris-operator-cr labels: app: nuvolaris-operator-cr rules: # read nodes storageclasses ingressclasses - apiGroups: [""] resources: ["nodes"] verbs: ["get", "list", "watch"] - apiGroups: [""] resources: ["namespaces"] verbs: ["get","list", "watch","create", "update", "patch", "delete"] - apiGroups: ["storage.k8s.io"] resources: ["storageclasses"] verbs: ["get", "list", "watch"] - apiGroups: ["networking.k8s.io"] resources: ["ingressclasses"] verbs: ["get", "list", "watch"] - apiGroups: ["apiextensions.k8s.io"] resources: ["customresourcedefinitions"] verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] - apiGroups: ["rbac.authorization.k8s.io"] resources: ["clusterroles","clusterrolebindings","rolebindings","roles"] verbs: ["get", "list", "watch","create", "update", "patch", "delete"] - apiGroups: ["route.openshift.io"] resources: ["routes", "routes/custom-host"] verbs: ["get","patch","list","update","watch","create","delete"] # tls specific - apiGroups: ["cert-manager.io"] resources: ["certificates"] verbs: ["get","list","watch"] - apiGroups: ["cert-manager.io"] resources: ["issuers"] verbs: ["update","patch","get","list","watch","create","delete","deletecollection"] - apiGroups: ["cert-manager.io"] resources: ["issuers/status"] verbs: ["update","patch"] - apiGroups: ["cert-manager.io"] resources: ["clusterissuers"] verbs: ["create","update","delete","patch","get","list","watch","deletecollection"] - apiGroups: ["cert-manager.io"] resources: ["clusterissuers/status"] verbs: ["create","update","delete","patch","get","list","watch"] - apiGroups: ["networking.k8s.io"] resources: ["ingresses"] verbs: ["get","list","watch","create","update","delete","patch"] - apiGroups: ["networking.k8s.io"] resources: ["ingresses/status"] verbs: ["update","patch"] - apiGroups: [""] resources: ["services"] verbs: ["get","list","watch"] - apiGroups: ["apps"] resources: ["deployments"] verbs: ["get", "list", "watch"] --- kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: name: nuvolaris-operator-crb namespace: nuvolaris labels: app: nuvolaris-operator-crb subjects: - kind: ServiceAccount namespace: nuvolaris name: nuvolaris-operator roleRef: kind: ClusterRole name: nuvolaris-operator-cr apiGroup: rbac.authorization.k8s.io