Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ On Kubernetes runtimes, `keepAliveTraffic` is an enforcement rule for job proced

For Minecraft coldstarter scrolls, attach `keepAliveTraffic` to the real runtime procedure's `main` expected port. Do not attach it to the coldstarter procedure; the standby listener must remain available while idle.

Minecraft scrolls should use `10kb/5m` on the real runtime `main` port. Server-list pings are small and should not keep a runtime warm; active clients generate recurring keep-alive/play traffic and should keep the runtime alive.
Minecraft scrolls should use `1mb/5m` on the real runtime `main` port. Server-list pings are small and should not keep a runtime warm; active clients generate recurring keep-alive/play traffic and should keep the runtime alive.
6 changes: 3 additions & 3 deletions scrolls/minecraft/cuberite/latest/scroll.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ commands:
image: artifacts.druid.gg/druid-team/druid:v0.1.249
expectedPorts:
- name: main
keepAliveTraffic: 10kb/5m
keepAliveTraffic: 1mb/5m
- name: webpanel
mounts:
- path: "/runtime"
Expand All @@ -41,9 +41,9 @@ commands:
id: start
expectedPorts:
- name: main
keepAliveTraffic: 10kb/5m
keepAliveTraffic: 1mb/5m
- name: webpanel
keepAliveTraffic: 10kb/5m
keepAliveTraffic: 1mb/5m
stop:
procedures:
- type: signal
Expand Down
Loading