mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2025-03-16 21:38:23 +00:00
- create an overlay for deployment of all components - create an overlay for just topologyupdater deployment (to be deployed in conjunction with the default overlay) - create a separate overlay for deployment of master and topologyupdater-job Signed-off-by: Swati Sehgal <swsehgal@redhat.com>
21 lines
606 B
YAML
21 lines
606 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
|