commit
5341430533
2 changed files with 10 additions and 8 deletions
|
@ -485,6 +485,8 @@ func (s *Sandbox) NetNsRemove() error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s.netns.closed = true
|
||||||
|
|
||||||
if s.netns.restored {
|
if s.netns.restored {
|
||||||
// we got namespaces in the form of
|
// we got namespaces in the form of
|
||||||
// /var/run/netns/cni-0d08effa-06eb-a963-f51a-e2b0eceffc5d
|
// /var/run/netns/cni-0d08effa-06eb-a963-f51a-e2b0eceffc5d
|
||||||
|
@ -505,6 +507,5 @@ func (s *Sandbox) NetNsRemove() error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
s.netns.closed = true
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,13 +49,6 @@ func (s *Server) StopPodSandbox(ctx context.Context, req *pb.StopPodSandboxReque
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clean up sandbox networking and close its network namespace.
|
|
||||||
hostNetwork := sb.NetNsPath() == ""
|
|
||||||
s.networkStop(hostNetwork, sb)
|
|
||||||
if err := sb.NetNsRemove(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
podInfraContainer := sb.InfraContainer()
|
podInfraContainer := sb.InfraContainer()
|
||||||
containers := sb.Containers().List()
|
containers := sb.Containers().List()
|
||||||
containers = append(containers, podInfraContainer)
|
containers = append(containers, podInfraContainer)
|
||||||
|
@ -77,6 +70,13 @@ func (s *Server) StopPodSandbox(ctx context.Context, req *pb.StopPodSandboxReque
|
||||||
s.ContainerStateToDisk(c)
|
s.ContainerStateToDisk(c)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clean up sandbox networking and close its network namespace.
|
||||||
|
hostNetwork := sb.NetNsPath() == ""
|
||||||
|
s.networkStop(hostNetwork, sb)
|
||||||
|
if err := sb.NetNsRemove(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
if err := label.ReleaseLabel(sb.ProcessLabel()); err != nil {
|
if err := label.ReleaseLabel(sb.ProcessLabel()); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -97,6 +97,7 @@ func (s *Server) StopPodSandbox(ctx context.Context, req *pb.StopPodSandboxReque
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := s.StorageRuntimeServer().StopContainer(sb.ID()); err != nil && errors.Cause(err) != storage.ErrContainerUnknown {
|
if err := s.StorageRuntimeServer().StopContainer(sb.ID()); err != nil && errors.Cause(err) != storage.ErrContainerUnknown {
|
||||||
logrus.Warnf("failed to stop sandbox container in pod sandbox %s: %v", sb.ID(), err)
|
logrus.Warnf("failed to stop sandbox container in pod sandbox %s: %v", sb.ID(), err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue