From c37110de76f5a3d68f00d4a029285d7fc7278acf Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Tue, 26 May 2026 23:45:15 +1000 Subject: [PATCH] chore: increase inotify limits on rke2 nodes to fix fsnotify watcher errors --- hieradata/roles/infra/k8s.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hieradata/roles/infra/k8s.yaml b/hieradata/roles/infra/k8s.yaml index 5d340ac..4d35fc8 100644 --- a/hieradata/roles/infra/k8s.yaml +++ b/hieradata/roles/infra/k8s.yaml @@ -132,6 +132,10 @@ sysctl::base::values: value: '0' net.ipv4.conf.all.rp_filter: value: '0' + fs.inotify.max_user_watches: + value: '524288' + fs.inotify.max_user_instances: + value: '512' # add loopback interfaces to ssh list ssh::server::options: -- 2.47.3