Skip to content

Instantly share code, notes, and snippets.

@nakatanakatana
Created February 20, 2018 10:51
Show Gist options
  • Save nakatanakatana/2b7d7edf0072f37862561cfb31b24363 to your computer and use it in GitHub Desktop.
Save nakatanakatana/2b7d7edf0072f37862561cfb31b24363 to your computer and use it in GitHub Desktop.
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: node-exporter
spec:
template:
metadata:
labels:
app: node-exporter
annotations:
prometheus.io/scrape: 'true'
prometheus.io/port: '9100'
prometheus.io/path: /metrics
spec:
containers:
- name: node-exporter
image: prom/node-exporter:latest
imagePullPolicy: Always
ports:
- containerPort: 9100
hostNetwork: true
nodeSelector:
beta.kubernetes.io/arch: amd64
hostPID: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment