Skip to content

Commit 650db8a

Browse files
authored
added nvme support
1 parent 0ca5c98 commit 650db8a

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

kubernetes/daemonset.yaml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,44 @@ spec:
2626
operator: "Exists"
2727
terminationGracePeriodSeconds: 5
2828
containers:
29-
- image: quay.io/galexrt/node-exporter-smartmon:v20201022-124227-096
29+
- image: quay.io/galexrt/node-exporter-smartmon:v20220203-125335-155
3030
name: smartmon
3131
env:
3232
- name: INTERVAL
3333
value: "900"
34+
- name: SCRIPT
35+
value: "smartmon.sh"
3436
securityContext:
3537
privileged: true
3638
resources:
3739
requests:
3840
cpu: 25m
3941
memory: 50Mi
4042
limits:
41-
cpu: 80m
43+
cpu: 250m
44+
memory: 75Mi
45+
volumeMounts:
46+
- mountPath: /dev
47+
name: host-dev
48+
readOnly: true
49+
- mountPath: /var/lib/node_exporter
50+
name: host-textfile
51+
readOnly: false
52+
- image: quay.io/galexrt/node-exporter-smartmon:v20220203-125335-155
53+
name: nvmemetrics
54+
env:
55+
- name: INTERVAL
56+
value: "900"
57+
- name: SCRIPT
58+
value: "nvme_metrics.sh"
59+
securityContext:
60+
privileged: true
61+
resources:
62+
requests:
63+
cpu: 25m
64+
memory: 50Mi
65+
limits:
66+
cpu: 250m
4267
memory: 75Mi
4368
volumeMounts:
4469
- mountPath: /dev

0 commit comments

Comments
 (0)