Unverified Commit 7749eeaf authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

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 @figo
parents 9b8f3f3c 98c9adf7
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment