Merge pull request #347 from maybe-sybr/maybe/fix-sysctl-ping_group_range

fix: Set `ping_group_range` to `0 0` by default
This commit is contained in:
Daniel J Walsh 2020-11-09 09:17:17 -05:00 committed by GitHub
commit 09881df054
1 changed files with 2 additions and 2 deletions

View File

@ -76,10 +76,10 @@ default_capabilities = [
# A list of sysctls to be set in containers by default, # A list of sysctls to be set in containers by default,
# specified as "name=value", # specified as "name=value",
# for example:"net.ipv4.ping_group_range = 0 1". # for example:"net.ipv4.ping_group_range = 0 0".
# #
default_sysctls = [ default_sysctls = [
"net.ipv4.ping_group_range=0 1", "net.ipv4.ping_group_range=0 0",
] ]
# A list of ulimits to be set in containers by default, specified as # A list of ulimits to be set in containers by default, specified as