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:
parent
23a1e19635
commit
f6f90da489
1 changed files with 15 additions and 1 deletions
|
@ -36,7 +36,21 @@
|
|||
],
|
||||
"image": "quay.io/kubernetes_incubator/node-feature-discovery:v0.1.0",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue