mirror of https://github.com/k3s-io/k3s
Merge pull request #67660 from vikaschoudhary16/fsnotify-limits
Automatic merge from submit-queue (batch tested with PRs 65788, 67648, 67660). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Increase inotify max_user_instance limit from 200 to 1000 Fixes:https://github.com/kubernetes/kubernetes/issues/64614 Related:https://github.com/kubernetes/kubernetes/issues/41713 Tested on local GCP cluster with 1000, it works. **Release note**: ```release-note None ``` /cc @kubernetes/sig-scalability-misc @wojtek-t @gmarek @Random-Liu @shyamjvs @jiayingz @saad-ali @RenaudWasTaken @figopull/8/head
commit
7749eeaf3f
|
@ -18,7 +18,7 @@ spec:
|
|||
initContainers:
|
||||
- name: init-inotify-limit
|
||||
image: busybox
|
||||
command: ['sysctl', '-w', 'fs.inotify.max_user_instances=200']
|
||||
command: ['sysctl', '-w', 'fs.inotify.max_user_instances=1000']
|
||||
securityContext:
|
||||
privileged: true
|
||||
volumes:
|
||||
|
|
Loading…
Reference in New Issue