Use alpine instead of busybox for cell subnet route injection

pic1 ships alpine but not busybox; ensure_cell_subnet_routes() now uses
the alpine image so route injection works on all cells.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-05 12:59:23 -04:00
parent e2c50c381a
commit 0042b3b1bb
+1 -1
View File
@@ -649,7 +649,7 @@ def ensure_cell_subnet_routes(cell_links: List[Dict[str, Any]]) -> None:
['docker', 'run', '--rm',
'--network', 'host',
'--cap-add', 'NET_ADMIN',
'busybox',
'alpine',
'ip', 'route', 'replace', subnet, 'via', WG_BRIDGE_IP],
check=False
)