From 76b9f46e1063c26a20eb2d551852ec0148b734c0 Mon Sep 17 00:00:00 2001 From: Aleksandr Zimin Date: Sun, 14 Jan 2024 18:57:31 +0300 Subject: [PATCH] add new mounts (#6) Signed-off-by: Aleksandr Zimin --- templates/agent/daemonset.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/templates/agent/daemonset.yaml b/templates/agent/daemonset.yaml index 390683f5..db681713 100644 --- a/templates/agent/daemonset.yaml +++ b/templates/agent/daemonset.yaml @@ -59,6 +59,12 @@ spec: name: host-sys-dir - mountPath: /run/udev/ name: host-run-udev-dir + - mountPath: /run/lvm/ + name: host-run-lvm-dir + - mountPath: /run/dmeventd-client + name: host-run-dmeventd-client + - mountPath: /run/dmeventd-server + name: host-run-dmeventd-server - mountPath: /host-root/etc/machine-id name: host-machine-id readOnly: true @@ -75,6 +81,16 @@ spec: path: /run/udev/ type: Directory name: host-run-udev-dir + - hostPath: + path: /run/lvm + type: Directory + name: host-run-lvm-dir + - hostPath: + path: /run/dmeventd-client + name: host-run-dmeventd-client + - hostPath: + path: /run/dmeventd-server + name: host-run-dmeventd-server - hostPath: path: /etc/machine-id type: File