Skip to content

Commit

Permalink
Merge pull request #42 from schemahero/apply-with-nodeselector
Browse files Browse the repository at this point in the history
Add required RBAC privileges
  • Loading branch information
marccampbell committed Jun 5, 2019
2 parents 882e0d1 + 84a426d commit 400e805
Showing 1 changed file with 62 additions and 2 deletions.
64 changes: 62 additions & 2 deletions install/schemahero/schemahero-operator.yaml
Expand Up @@ -426,6 +426,66 @@ rules:
- update
- patch
- delete
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- ""
resources:
- configmaps
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- "rbac.authorization.k8s.io"
resources:
- roles
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- "rbac.authorization.k8s.io"
resources:
- rolebindings
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- ""
resources:
- serviceaccounts
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
Expand Down Expand Up @@ -566,10 +626,10 @@ spec:
resources:
limits:
cpu: 100m
memory: 30Mi
memory: 200Mi
requests:
cpu: 100m
memory: 20Mi
memory: 100Mi
volumeMounts:
- mountPath: /tmp/cert
name: cert
Expand Down

0 comments on commit 400e805

Please sign in to comment.