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.
docker
1 parent 7fec41a commit b24cc83Copy full SHA for b24cc83
examples/docker.yaml
@@ -56,6 +56,15 @@ provision:
56
systemctl --user start dbus
57
dockerd-rootless-setuptool.sh install
58
docker context use rootless
59
+- mode: system
60
+ script: |
61
+ #!/bin/bash
62
+ # Increase inotify limits to prevent nested Kubernetes control planes
63
+ # from crash looping.
64
+ set -eux -o pipefail
65
+ echo 'fs.inotify.max_user_watches = 524288' >> /etc/sysctl.conf
66
+ echo 'fs.inotify.max_user_instances = 512' >> /etc/sysctl.conf
67
+ sysctl --system
68
probes:
69
- script: |
70
#!/bin/bash
0 commit comments