summaryrefslogtreecommitdiffstats
path: root/src/cni/multus/kube_cni_multus.yml
blob: cd91737d4b5ad5dab144ba6ccd4abde6b1545ace (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
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
92
93
94
95
---
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": "weave",
          "type": "weave-net",
          "hairpinMode": true,
          "masterplugin": 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
      initContainers:
      - name: install-cni
        image: ubuntu:16.04
        command:
          - bash
          - "-c"
          - "apt-get update && apt-get install -y git && git clone http://github.com/opnfv/container4nfv && cd container4nfv && git fetch https://gerrit.opnfv.org/gerrit/container4nfv refs/changes/81/47681/5 && git checkout FETCH_HEAD && bash ./src/cni/multus/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
      containers:
        - name: run-cni
          image: busybox:1.27.2
          command: ['sh', '-c', 'while true; do sleep 10000; done' ]
      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