mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-31 04:04:51 +00:00
26 lines
747 B
YAML
26 lines
747 B
YAML
- op: add
|
|
path: /spec/template/spec/volumes
|
|
value:
|
|
- name: host-sys
|
|
hostPath:
|
|
path: "/sys"
|
|
- name: kubelet-podresources-conf
|
|
hostPath:
|
|
path: /var/lib/kubelet/config.yaml
|
|
- name: kubelet-podresources-sock
|
|
hostPath:
|
|
path: /var/lib/kubelet/pod-resources/kubelet.sock
|
|
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/volumeMounts
|
|
value:
|
|
- name: kubelet-podresources-conf
|
|
mountPath: /host-var/lib/kubelet/config.yaml
|
|
- name: kubelet-podresources-sock
|
|
mountPath: /host-var/lib/kubelet/pod-resources/kubelet.sock
|
|
- name: host-sys
|
|
mountPath: /host-sys
|
|
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/args/-
|
|
value: "-podresources-socket=/host-var/lib/kubelet/pod-resources/kubelet.sock"
|