Skip to content
Open
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
1 change: 1 addition & 0 deletions pkg/unikontainers/unikontainers.go
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,7 @@ func (u Unikontainer) joinSandboxNetNs() error {
if err != nil {
return fmt.Errorf("error opening namespace path: %w", err)
}
defer unix.Close(fd)
err = unix.Setns(int(fd), unix.CLONE_NEWNET)
if err != nil {
return fmt.Errorf("error joining namespace: %w", err)
Expand Down