blob: 8a854c06e0b9d09d7ae31010fa7cd533f5388178 (
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
96
97
98
99
100
101
|
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ovs-cni-marker-cr
rules:
- apiGroups:
- ""
resources:
- nodes
- nodes/status
verbs:
- get
- update
- patch
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
name: ovs-cni-marker-crb
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: ovs-cni-marker-cr
subjects:
- kind: ServiceAccount
name: ovs-cni-marker
namespace: kube-system
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: ovs-cni-marker
namespace: kube-system
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: ovs-cni-amd64
namespace: kube-system
labels:
tier: node
app: ovs-cni
spec:
selector:
matchLabels:
app: ovs-cni
template:
metadata:
labels:
tier: node
app: ovs-cni
spec:
serviceAccountName: ovs-cni-marker
hostNetwork: true
nodeSelector:
beta.kubernetes.io/arch: amd64
tolerations:
- key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule
containers:
- name: ovs-cni-plugin
image: quay.io/kubevirt/ovs-cni-plugin: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
- name: ovs-cni-marker
image: quay.io/kubevirt/ovs-cni-marker:latest
imagePullPolicy: IfNotPresent
securityContext:
privileged: true
args:
- -node-name
- $(NODE_NAME)
- -ovs-socket
- /host/var/run/openvswitch/db.sock
volumeMounts:
- name: ovs-var-run
mountPath: /host/var/run/openvswitch
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
volumes:
- name: cnibin
hostPath:
path: /opt/cni/bin
- name: ovs-var-run
hostPath:
path: /var/run/openvswitch
|