feat: firecracker mmds identity

This commit is contained in:
Harivansh Rathi 2026-04-10 00:53:47 +00:00
parent 500354cd9b
commit 3eb610b703
23 changed files with 1813 additions and 263 deletions

View file

@ -56,6 +56,9 @@ func (d *Daemon) usedMachineRelayPorts(ctx context.Context, machineID contractho
if record.ID == machineID {
continue
}
if record.Phase != contracthost.MachinePhaseRunning {
continue
}
if port := machineRelayHostPort(record, name); port != 0 {
used[port] = struct{}{}
}