You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/preflights/host-preflight.yaml
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1013,6 +1013,22 @@ spec:
1013
1013
- pass:
1014
1014
when: 'net.bridge.bridge-nf-call-iptables == 1'
1015
1015
message: "Bridge netfilter call iptables is enabled."
1016
+
- sysctl:
1017
+
checkName: "Maximum number of inotify instances per user"
1018
+
outcomes:
1019
+
- fail:
1020
+
when: "fs.inotify.max_user_instances < 1024"
1021
+
message: "The system limit for inotify instances per user must be at least 1024. To increase it, edit /etc/sysctl.conf, add or edit the line 'fs.inotify.max_user_instances=1024', and run 'sudo sysctl -p'."
1022
+
- pass:
1023
+
message: "The system allows at least 1024 inotify instances per user."
1024
+
- sysctl:
1025
+
checkName: "Maximum number of inotify watches per user"
1026
+
outcomes:
1027
+
- fail:
1028
+
when: "fs.inotify.max_user_watches < 65536"
1029
+
message: "The system limit for inotify watches per user must be at least 65536. To increase it, edit /etc/sysctl.conf, add or edit the line 'fs.inotify.max_user_watches=65536', and run 'sudo sysctl -p'."
1030
+
- pass:
1031
+
message: "The system allows at least 65536 inotify watches per user."
0 commit comments