Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions manifests/meshnet/grpc/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,21 +221,41 @@ metadata:
app: meshnet
name: meshnet-clusterrole
rules:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list", "watch"]
- apiGroups:
- networkop.co.uk
resources:
- topologies
verbs:
- get
- list
- watch
- update
- patch
- apiGroups:
- networkop.co.uk
resources:
- gwirekobjs
verbs:
- '*'
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- networkop.co.uk
resources:
- topologies/status
- gwirekobjs/spec
- gwirekobjs/status
verbs:
- '*'
- get
- update
- patch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down Expand Up @@ -293,15 +313,16 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: us-west1-docker.pkg.dev/kne-external/kne/networkop/meshnet:v0.3.2
image: public.ecr.aws/drivenets/meshnet-cni:v0.5.0-dn
imagePullPolicy: IfNotPresent
name: meshnet
resources:
limits:
memory: 512Mi
cpu: "2"
memory: 10G
requests:
cpu: 50m
memory: 256Mi
cpu: 200m
memory: 1G
securityContext:
privileged: true
volumeMounts:
Expand All @@ -312,7 +333,6 @@ spec:
- mountPath: /var/run/netns
mountPropagation: Bidirectional
name: var-run-netns
hostIPC: true
hostNetwork: true
hostPID: true
nodeSelector:
Expand Down
34 changes: 27 additions & 7 deletions manifests/meshnet/vxlan/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -221,21 +221,41 @@ metadata:
app: meshnet
name: meshnet-clusterrole
rules:
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list", "watch"]
- apiGroups:
- networkop.co.uk
resources:
- topologies
verbs:
- get
- list
- watch
- update
- patch
- apiGroups:
- networkop.co.uk
resources:
- gwirekobjs
verbs:
- '*'
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- networkop.co.uk
resources:
- topologies/status
- gwirekobjs/spec
- gwirekobjs/status
verbs:
- '*'
- get
- update
- patch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down Expand Up @@ -293,15 +313,16 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: us-west1-docker.pkg.dev/kne-external/kne/networkop/meshnet:v0.3.2
image: public.ecr.aws/drivenets/meshnet-cni:v0.5.0-dn
imagePullPolicy: IfNotPresent
name: meshnet
resources:
limits:
memory: 512Mi
cpu: "2"
memory: 10G
requests:
cpu: 50m
memory: 256Mi
cpu: 200m
memory: 1G
securityContext:
privileged: true
volumeMounts:
Expand All @@ -312,7 +333,6 @@ spec:
- mountPath: /var/run/netns
mountPropagation: Bidirectional
name: var-run-netns
hostIPC: true
hostNetwork: true
hostPID: true
nodeSelector:
Expand Down
Loading