RPirruccio #653
Closed
RPirruccio
started this conversation in
Vouch Request
RPirruccio
#653
Replies: 2 comments
-
|
/vouch |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@RPirruccio has been vouched by @johntmyers. You can now submit pull requests to OpenShell. Welcome aboard. Please read CONTRIBUTING.md before submitting. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What do you want to work on?
I hit the "K8s namespace not ready" error from #552 on a Linux host already running a k3s cluster. Dug into the container and found
fs.inotify.max_user_instanceswas maxed out at 128, containerd couldn't create its fsnotify watcher, so the RuntimeService never came up.sysctl -w fs.inotify.max_user_instances=512on the host fixed it immediately.I want to submit a fix that catches this before k3s starts with a warning in
cluster-entrypoint.shand a check inopenshell doctor. It doesn't change any kernel params, just tells you what's wrong and how to fix it yourself.Why this change?
The error gives you nothing to go on. Took me a couple hours to find the real cause buried in containerd logs. This would catch it before k3s even starts.
Checklist
Beta Was this translation helpful? Give feedback.
All reactions