Alex | 1f90e7b | 2021-09-03 15:31:28 -0500 | [diff] [blame] | 1 | apiVersion: apps/v1 |
| 2 | kind: DaemonSet |
| 3 | metadata: |
| 4 | name: nodeinfo |
| 5 | namespace: qa-space |
| 6 | spec: |
| 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 Zadorozhna | 51cf182 | 2024-03-06 17:19:36 +0100 | [diff] [blame] | 27 | image: registry.mirantis.com/professional-services-qa/toolset-min:latest |
Alex | 1f90e7b | 2021-09-03 15:31:28 -0500 | [diff] [blame] | 28 | hostNetwork: true |
| 29 | terminationGracePeriodSeconds: 2 |