blob: 10a812f62a022d13fe0a1311ff8739158151e083 (
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
|
{{- if eq .Values.kind "DaemonSet"}}
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: testpmd
annotations:
k8s.v1.cni.cncf.io/networks: "{{- join "\",\"" .Values.extraInterfaces }}"
spec:
selector:
matchLabels:
app: testpmd
template:
metadata:
labels:
app: testpmd
spec:
containers:
- name: testpmd
image: ovsperf/dpdkfwd:lakelse
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3000
nodeSelector:
{{- .Values.nodeSelector.matchLables | toYaml | nindent 12 }}
{{- end }}
|