--- apiVersion: v1 kind: List items: - apiVersion: v1 kind: ServiceAccount metadata: labels: provider: fabric8 project: prometheus-node-exporter version: 2.2.301 group: io.fabric8.devops.apps name: node-exporter - apiVersion: extensions/v1beta1 kind: DaemonSet metadata: annotations: fabric8.io/iconUrl: https://cdn.rawgit.com/fabric8io/fabric8-devops/master/prometheus-node-exporter/src/main/fabric8/icon.png labels: provider: fabric8 project: prometheus-node-exporter version: 2.2.301 group: io.fabric8.devops.apps name: node-exporter spec: template: metadata: labels: provider: fabric8 project: prometheus-node-exporter version: 2.2.301 group: io.fabric8.devops.apps name: node-exporter spec: containers: - args: - -collector.procfs - /host/proc - -collector.sysfs - /host/proc - -collector.filesystem.ignored-mount-points - ^/(sys|proc|dev|host|etc)($|/) image: prom/node-exporter name: node-exporter ports: - containerPort: 9100 name: scrape volumeMounts: - mountPath: /host/proc name: host-proc readOnly: true - mountPath: /host/sys name: host-sys readOnly: true - mountPath: /rootfs name: host-root readOnly: true hostNetwork: true serviceAccountName: node-exporter volumes: - hostPath: path: /proc name: host-proc - hostPath: path: /sys name: host-sys - hostPath: path: / name: host-root