diff --git a/jsonnetfile.lock.json b/jsonnetfile.lock.json
index 0058ea87d5b91956f055887117a4acae11a43fd1..4cab772d99b56cc679429faa757c19484223ce3e 100644
--- a/jsonnetfile.lock.json
+++ b/jsonnetfile.lock.json
@@ -8,7 +8,7 @@
                     "subdir": "contrib/kube-prometheus/jsonnet/kube-prometheus"
                 }
             },
-            "version": "677cb68995f2632cd5a1ecb26e52e3a7c743322b"
+            "version": "f2724c252dad424580f3d5061304f88b4e1a2bb5"
         },
         {
             "name": "ksonnet",
diff --git a/manifests/node-exporter-daemonset.yaml b/manifests/node-exporter-daemonset.yaml
index ee084f0a9d6f4fbd3e171dd390d21b8020a9a7a0..8f5f4ff4590cbd7fc1ea336ae8b1ae7ab8f0af7d 100644
--- a/manifests/node-exporter-daemonset.yaml
+++ b/manifests/node-exporter-daemonset.yaml
@@ -16,7 +16,7 @@ spec:
     spec:
       containers:
       - args:
-        - --web.listen-address=127.0.0.1:9101
+        - --web.listen-address=127.0.0.1:9100
         - --path.procfs=/host/proc
         - --path.sysfs=/host/sys
         - --collector.filesystem.ignored-mount-points=^/(dev|proc|sys|var/lib/docker/.+)($|/)
@@ -42,8 +42,13 @@ spec:
           name: root
           readOnly: true
       - args:
-        - --secure-listen-address=:9100
-        - --upstream=http://127.0.0.1:9101/
+        - --secure-listen-address=$(IP):9100
+        - --upstream=http://127.0.0.1:9100/
+        env:
+        - name: IP
+          valueFrom:
+            fieldRef:
+              fieldPath: status.podIP
         image: quay.io/coreos/kube-rbac-proxy:v0.4.0
         name: kube-rbac-proxy
         ports: