We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0e44d2f + 7c55828 commit e807ad5Copy full SHA for e807ad5
scripts/setup-kind-cluster.sh
@@ -16,6 +16,10 @@ install_kind() {
16
}
17
18
install_dependencies() {
19
+ # Without this, pods may fail with 'too many open files'
20
+ # https://kind.sigs.k8s.io/docs/user/known-issues/#pod-errors-due-to-too-many-open-files
21
+ sysctl fs.inotify.max_user_watches=524288
22
+ sysctl fs.inotify.max_user_instances=512
23
## Install docker
24
if ! command -v docker &> /dev/null; then
25
echo "****** Installing Docker..."
0 commit comments