apiVersion: apps/v1 kind: DaemonSet metadata: name: sapiantools-hostnet labels: k8s-app: sapiantools-hostnet namespace: tools spec: selector: matchLabels: k8s-app: sapiantools-hostnet template: metadata: labels: k8s-app: sapiantools-hostnet spec: hostNetwork: true dnsPolicy: "ClusterFirstWithHostNet" containers: - name: sapiantools image: quay.io/sapian/sapiantools:latest imagePullPolicy: Always command: [ "/bin/bash", "-c", "--" ] args: [ "while true; do sleep 60; done;" ] resources: limits: cpu: 100m memory: 100Mi volumeMounts: [] volumes: []