All Downloads are FREE. Search and download functionalities are using the official Maven repository.

vops.apps.prometheus-node-exporter.2.2.250.source-code.daemonset.yml Maven / Gradle / Ivy

Go to download

[Prometheus](http://prometheus.io/) [Node Exporter](https://github.com/prometheus/node_exporter) - Exporter for machine metrics

There is a newer version: 2.2.335
Show newest version
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
  name: node-exporter
spec:
  template:
    metadata:
      name: node-exporter
    spec:
      containers:
      - image: prom/node-exporter
        name: node-exporter
        args:
        - -collector.procfs
        - /host/proc
        - -collector.sysfs
        - /host/proc
        - -collector.filesystem.ignored-mount-points
        - "^/(sys|proc|dev|host|etc)($|/)"
        ports:
        - containerPort: 9100
          name: scrape
        volumeMounts:
          - name: host-proc
            mountPath: /host/proc
            readOnly: true
          - name: host-sys
            mountPath: /host/sys
            readOnly: true
          - name: host-root
            mountPath: /rootfs
            readOnly: true
      serviceAccountName: node-exporter
      hostNetwork: true
      volumes:
        - name: host-proc
          hostPath:
            path: /proc
        - name: host-sys
          hostPath:
            path: /sys
        - name: host-root
          hostPath:
            path: /




© 2015 - 2025 Weber Informatics LLC | Privacy Policy