1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Add /sys mount to daemonset template (#134)

Needed by the selinux feature source.
This commit is contained in:
Markus Lehtonen 2018-06-21 21:28:28 +03:00 committed by Balaji Subramaniam
parent 23a1e19635
commit f6f90da489

View file

@ -36,7 +36,21 @@
], ],
"image": "quay.io/kubernetes_incubator/node-feature-discovery:v0.1.0", "image": "quay.io/kubernetes_incubator/node-feature-discovery:v0.1.0",
"name": "node-feature-discovery", "name": "node-feature-discovery",
"args": ["--sleep-interval=60s"] "args": ["--sleep-interval=60s"],
"volumeMounts": [
{
"name": "host-sys",
"mountPath": "/host-sys"
}
]
}
],
"volumes": [
{
"name": "host-sys",
"hostPath": {
"path": "/sys"
}
} }
] ]
} }