blob: 823d503fe965901bd6316f703bb76f4da224b804 [file] [log] [blame]
Alex08d4cad2021-08-25 14:26:03 -05001apiVersion: apps/v1
2kind: DaemonSet
3metadata:
4 name: nodeinfo
5 namespace: qa-space
6spec:
7 selector:
8 matchLabels:
9 name: nodeinfo
10 template:
11 metadata:
12 labels:
13 name: nodeinfo
14 spec:
15 tolerations:
16 # this toleration is to have the daemonset runnable on master nodes
17 # remove it if your masters can't run pods
18 - key: node-role.kubernetes.io/master
19 operator: Exists
20 effect: NoSchedule
21 containers:
22 - command:
23 - /bin/sleep
24 - infinity
25 name: nodeinfo-pod
26 imagePullPolicy: IfNotPresent
Ievgeniia Zadorozhnadfdcb432023-11-03 16:54:20 +010027 image: registry.mirantis.com/professional-services-qa/toolset-min:latest
Alex08d4cad2021-08-25 14:26:03 -050028 hostNetwork: true