You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: robust agent user setup and document network routing
Cloud-init runcmd now explicitly creates the agent user with SSH key,
handling cases where cloud-init's users section fails silently or the
base image has unexpected state.
README documents the route command needed after colima start with
--network-address to reach containers on the Incus bridge network.
The `--network-address` flag assigns a routable IP to the VM. After starting, add a route so your Mac can reach containers on the Incus bridge network:
21
+
22
+
```bash
23
+
# Get the VM's IP address
24
+
VM_IP=$(colima list -p incus -j | jq -r '.address')
25
+
26
+
# Add route to container network (persists until reboot)
27
+
sudo route add -net 192.100.0.0/24 $VM_IP
28
+
```
29
+
30
+
To make routing persistent across reboots, add a LaunchDaemon or re-run after `colima start`.
0 commit comments