# --------------------------------------------------------------------------- # 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: camel-k-pipeline --- kind: Role apiVersion: rbac.authorization.k8s.io/v1beta1 metadata: name: camel-k-pipeline rules: - apiGroups: - camel.apache.org resources: - "*" verbs: - "*" - apiGroups: - "" resources: - pods - services - endpoints - persistentvolumeclaims - configmaps - secrets - serviceaccounts verbs: - create - delete - deletecollection - get - list - patch - update - watch - apiGroups: - rbac.authorization.k8s.io resources: - roles - rolebindings verbs: - create - delete - deletecollection - get - list - patch - update - watch - apiGroups: - "" resources: - events verbs: - create - patch - get - list - watch - apiGroups: - apps resources: - deployments - replicasets - statefulsets verbs: - create - delete - deletecollection - get - list - patch - update - watch - apiGroups: - apps attributeRestrictions: null resources: - daemonsets verbs: - get - list - watch - apiGroups: - "" - "build.openshift.io" resources: - buildconfigs - buildconfigs/webhooks - builds verbs: - create - delete - deletecollection - get - list - patch - update - watch - apiGroups: - "" - "image.openshift.io" resources: - imagestreamimages - imagestreammappings - imagestreams - imagestreams/secrets - imagestreamtags verbs: - create - delete - deletecollection - get - list - patch - update - watch - apiGroups: - "" - build.openshift.io attributeRestrictions: null resources: - buildconfigs/instantiate - buildconfigs/instantiatebinary - builds/clone verbs: - create - apiGroups: - "" - "route.openshift.io" resources: - routes verbs: - create - delete - deletecollection - get - list - patch - update - watch - apiGroups: - "" - route.openshift.io resources: - routes/custom-host verbs: - create --- kind: RoleBinding apiVersion: rbac.authorization.k8s.io/v1beta1 metadata: name: camel-k-pipeline subjects: - kind: ServiceAccount name: camel-k-pipeline roleRef: kind: Role name: camel-k-pipeline apiGroup: rbac.authorization.k8s.io