56 lines
2.7 KiB
YAML
56 lines
2.7 KiB
YAML
# Copyright 2019 The Tekton Authors
|
|
#
|
|
# 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.
|
|
|
|
kind: ClusterRole
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: tekton-triggers-admin
|
|
labels:
|
|
app.kubernetes.io/instance: default
|
|
app.kubernetes.io/part-of: tekton-triggers
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources: ["configmaps", "services", "events"]
|
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
|
- apiGroups: ["apps"]
|
|
resources: ["deployments", "deployments/finalizers"]
|
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
|
- apiGroups: ["admissionregistration.k8s.io"]
|
|
resources: ["mutatingwebhookconfigurations", "validatingwebhookconfigurations"]
|
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
|
- apiGroups: ["triggers.tekton.dev"]
|
|
resources: ["clustertriggerbindings", "clusterinterceptors", "interceptors", "eventlisteners", "triggerbindings", "triggertemplates", "triggers", "eventlisteners/finalizers"]
|
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
|
- apiGroups: ["triggers.tekton.dev"]
|
|
resources: ["clustertriggerbindings/status", "clusterinterceptors/status", "interceptors/status", "eventlisteners/status", "triggerbindings/status", "triggertemplates/status", "triggers/status"]
|
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
|
# We uses leases for leaderelection
|
|
- apiGroups: ["coordination.k8s.io"]
|
|
resources: ["leases"]
|
|
verbs: ["get", "list", "create", "update", "delete", "patch", "watch"]
|
|
- apiGroups: ["serving.knative.dev"]
|
|
resources: ["*", "*/status", "*/finalizers"]
|
|
verbs: ["get", "list", "create", "update", "delete", "deletecollection", "patch", "watch"]
|
|
- apiGroups: [""]
|
|
resources: ["namespaces"]
|
|
verbs: ["get"]
|
|
# The webhook configured the namespace as the OwnerRef on various cluster-scoped resources,
|
|
# which requires we can Get the system namespace.
|
|
resourceNames: ["tekton-pipelines"]
|
|
- apiGroups: [""]
|
|
resources: ["namespaces/finalizers"]
|
|
verbs: ["update"]
|
|
# The webhook configured the namespace as the OwnerRef on various cluster-scoped resources,
|
|
# which requires we can update the system namespace finalizers.
|
|
resourceNames: ["tekton-pipelines"] |