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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: cnimultus
namespace: kube-system
---
kind: ConfigMap
apiVersion: v1
metadata:
name: kube-cnimultus-cfg
namespace: kube-system
labels:
tier: node
app: cnimultus
data:
cni-conf.json: |
{
"name": "multus",
"type": "multus",
"delegates": [
{
"name": "CDK-flannel-network",
"type": "flannel",
"masterplugin": true
"delegate": {
"isDefaultGateway": true
}
}
},
{
"name": "mynet",
"type": "bridge",
"bridge": "cni0",
"isGateway": true,
"ipMasq": true,
"ipam": {
"type": "host-local",
"subnet": "10.22.0.0/16",
"routes": [
{ "dst": "0.0.0.0/0" }
]
}
}
]
}
---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kube-cnimultus-ds
namespace: kube-system
labels:
tier: node
app: cnimultus
spec:
template:
metadata:
labels:
tier: node
app: cnimultus
spec:
hostNetwork: true
nodeSelector:
beta.kubernetes.io/arch: amd64
tolerations:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
serviceAccountName: cnimultus
containers:
- name: install-cni
image: openretriever/cnimultus
command: [ "/bin/bash", "/cni/install_cni.sh" ]
volumeMounts:
- name: cni-bin
mountPath: /opt/cni/bin
- name: cni-cfg
mountPath: /etc/cni/net.d
- name: cnimultus-cfg
mountPath: /etc/kube-cnimultus
volumes:
- name: cni-bin
hostPath:
path: /opt/cni/bin
- name: cni-cfg
hostPath:
path: /etc/cni/net.d
- name: cnimultus-cfg
configMap:
name: kube-cnimultus-cfg
|