Skip to content

Instantly share code, notes, and snippets.

@wjx0912
Forked from nakatanakatana/node-exporter.yaml
Created April 3, 2018 14:32
Show Gist options
  • Save wjx0912/c81cea8cc63bf3ddba3b20dbe1fce204 to your computer and use it in GitHub Desktop.
Save wjx0912/c81cea8cc63bf3ddba3b20dbe1fce204 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