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
When a machine is created with Jailer and CNI, but without NetNS configuration, it continually reports "Failed to write to tap: Os { code: 5, kind: Other, message: "I/O error" }"
No such problem occurs when NetNS parameter is provided.
I've noticed that the NewMachine function calls jail function, before default NetNSPath is assigned to the machine config
i.e.
jail does not configure nspath
if cfg.NetNS != "" {
builder = builder.WithNetNS(cfg.NetNS)
}
When a machine is created with Jailer and CNI, but without NetNS configuration, it continually reports "Failed to write to tap: Os { code: 5, kind: Other, message: "I/O error" }"
No such problem occurs when NetNS parameter is provided.
I've noticed that the
NewMachine
function callsjail
function, before default NetNSPath is assigned to the machine configi.e.
jail does not configure nspath
later NewMachine configures a default one
The text was updated successfully, but these errors were encountered: