Skip to content

Commit

Permalink
Add tetrapod_clients.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuzu committed Mar 15, 2023
1 parent b216927 commit 5ce4d37
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
1 change: 1 addition & 0 deletions controlplane/config/rbac/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ resources:
- auth_proxy_role.yaml
- auth_proxy_role_binding.yaml
- auth_proxy_client_clusterrole.yaml
- tetrapod_clients.yaml
60 changes: 60 additions & 0 deletions controlplane/config/rbac/tetrapod_clients.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: tetrapod-clients-role
rules:
# CIDRClaimTemplates
- apiGroups:
- controlplane.miscord.win
resources:
- cidrclaimtemplates
verbs:
- get
- list
- watch
- apiGroups:
- controlplane.miscord.win
resources:
- cidrclaimtemplates/status
verbs:
- get

# CIDRClaims
- apiGroups:
- controlplane.miscord.win
resources:
- cidrclaims
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- controlplane.miscord.win
resources:
- cidrclaims/status
verbs:
- get

# PeerNodes
- apiGroups:
- controlplane.miscord.win
resources:
- peernodes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- controlplane.miscord.win
resources:
- peernodes/status
verbs:
- get

0 comments on commit 5ce4d37

Please sign in to comment.