blob: 74bb520c40ae4ab8dc2b7f202598a8d8bc2b1817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: userspace-cni-amd64
namespace: kube-system
labels:
tier: node
app: userspace-cni
spec:
selector:
matchLabels:
app: userspace-cni
template:
metadata:
labels:
tier: node
app: userspace-cni
spec:
hostNetwork: true
nodeSelector:
beta.kubernetes.io/arch: amd64
tolerations:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
containers:
- name: userspace-cni-plugin
image: parthyadav/userspace-cni:latest
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: "100m"
memory: "50Mi"
limits:
cpu: "100m"
memory: "50Mi"
securityContext:
privileged: true
volumeMounts:
- name: cnibin
mountPath: /host/opt/cni/bin
volumes:
- name: cnibin
hostPath:
path: /opt/cni/bin
|