This message was deleted.
# k3d
a
This message was deleted.
h
Ok, I'm getting some where, I see this inside the agent logs:
Copy code
E1002 23:51:28.878328      87 dynamic_cafile_content.go:169] "Failed to watch CA file, will retry later" err="error creating fsnotify watcher: too many open files"
But this baffling because the max is very high inside the container
Copy code
~ # cat /proc/sys/fs/inotify/max_user_watches
1048576
Yet the number watches seems to be 7:
Copy code
~ # find /proc/*/fd -lname 'anon_inode:inotify' -print 2>/dev/null | wc -l
7
I figured it out. Turns out it was
/proc/sys/fs/inotify/max_user_instances
... this was set to 128 which is too low apaprently, I set it to 8192 and now it works. 👋 🙂
👍 2