Skip to content

Commit

Permalink
Releasing CNC v2.2.11
Browse files Browse the repository at this point in the history
Signed-off-by: Subash Dangol <subash.dangol@citrix.com>
  • Loading branch information
subashd committed Sep 6, 2023
1 parent 654784d commit dd4d566
Showing 1 changed file with 37 additions and 3 deletions.
40 changes: 37 additions & 3 deletions deploy/citrix-k8s-node-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: citrix-node-controller
rules:
- apiGroups: [""]
- apiGroups: ["*"]
resources: ["configmaps", "pods"]
verbs: ["get", "list", "watch", "create", "patch", "delete", "update"]
- apiGroups: ["*"]
Expand Down Expand Up @@ -37,13 +37,47 @@ roleRef:
subjects:
- kind: ServiceAccount
name: citrix-node-controller
namespace: citrix-system
namespace: default
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: citrix-node-controller
namespace: citrix-system
namespace: default
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: kube-cnc-router
rules:
- apiGroups: ["*"]
resources: ["configmaps"]
verbs: ["get", "list", "watch", "create", "patch", "delete", "update"]
- apiGroups: [""]
resources: ["configmaps"]
verbs: ["get", "list", "watch", "create", "patch", "delete", "update"]
- apiGroups: ["crd.projectcalico.org"]
resources: ["ipamblocks"]
verbs: ["get", "list"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: kube-cnc-router
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: kube-cnc-router
subjects:
- kind: ServiceAccount
name: kube-cnc-router
namespace: default
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: kube-cnc-router
namespace: default
---
apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1
kind: Deployment
Expand Down

0 comments on commit dd4d566

Please sign in to comment.