We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd504a4 commit e7bbf98Copy full SHA for e7bbf98
examples/docker-rootful.yaml
@@ -54,6 +54,14 @@ provision:
54
fi
55
export DEBIAN_FRONTEND=noninteractive
56
curl -fsSL https://get.docker.com | sh
57
+- mode: system
58
+ script: |
59
+ #!/bin/bash
60
+ # Increase inotify limits to prevent nested Kubernetes control planes
61
+ # from crash looping.
62
+ echo 'fs.inotify.max_user_watches = 524288' >> /etc/sysctl.conf
63
+ echo 'fs.inotify.max_user_instances = 512' >> /etc/sysctl.conf
64
+ sysctl --system
65
probes:
66
- script: |
67
#!/bin/bash
0 commit comments