summaryrefslogtreecommitdiffstats
path: root/src/vagrant/k8s_kubeadm/ovsdpdk/kube_ovsdpdk.yml
blob: ed04ccd460335bbf3dfdc98f5ac67860629142a0 (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
---
apiVersion: v1
kind: ServiceAccount
metadata:
  name: ovsdpdk
  namespace: kube-system
---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
  name: kube-ovsdpdk-ds
  namespace: kube-system
  labels:
    tier: node
    app: ovsdpdk
spec:
  template:
    metadata:
      labels:
        tier: node
        app: ovsdpdk
    spec:
      hostNetwork: true
      nodeSelector:
        beta.kubernetes.io/arch: amd64
      tolerations:
      - key: node-role.kubernetes.io/master
        operator: Exists
        effect: NoSchedule
      serviceAccountName: ovsdpdk
      containers:
      - name: install-ovsdpdk
        image: openretriever/ubuntu1604-ovsdpdk
        command: [ "/bin/bash", "/ovsdpdk/start.sh" ]
        securityContext:
          privileged: true
        volumeMounts:
        - name: local-bin
          mountPath: /usr/local/bin
        - name: var-run
          mountPath: /var/run/openvswitch
        - name: lib-modules
          mountPath: /lib/modules
        - name: dev-hugepage
          mountPath: /dev
      volumes:
        - name: local-bin
          hostPath:
            path: /usr/local/bin
        - name: var-run
          hostPath:
            path: /var/run/openvswitch
        - name: lib-modules
          hostPath:
            path: /lib/modules
        - name: dev-hugepage
          hostPath:
            path: /dev