Skip to content

Commit

Permalink
fix: add sysctls for cloudflared
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Buhl <[email protected]>
  • Loading branch information
onedr0p committed Apr 3, 2024
1 parent b6234fc commit 28ae26d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions bootstrap/templates/ansible/playbooks/cluster-prepare.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@
fs.inotify.max_queued_events: 65536
fs.inotify.max_user_watches: 524288
fs.inotify.max_user_instances: 8192
net.core.rmem_max: 2500000
net.core.wmem_max: 2500000

handlers:
- name: Reboot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,11 @@ patches:
- |-
machine:
sysctls:
fs.inotify.max_queued_events: 65536
fs.inotify.max_user_watches: 524288
fs.inotify.max_user_instances: 8192
fs.inotify.max_queued_events: "65536"
fs.inotify.max_user_watches: "524288"
fs.inotify.max_user_instances: "8192"
net.core.rmem_max: "2500000"
net.core.wmem_max: "2500000"
# Mount openebs-hostpath in kubelet
- |-
Expand Down

0 comments on commit 28ae26d

Please sign in to comment.