diff --git a/containerd-shim-v2/create.go b/containerd-shim-v2/create.go index affdbae2b4..1e8989aa46 100644 --- a/containerd-shim-v2/create.go +++ b/containerd-shim-v2/create.go @@ -132,14 +132,6 @@ func loadSpec(r *taskAPI.CreateTaskRequest) (*specs.Spec, string, error) { return nil, "", err } - // Todo: - // Since there is a bug in kata for sharedPidNs, here to - // remove the pidns to disable the sharePidNs temporarily, - // once kata fixed this issue, we can remove this line. - // For the bug, please see: - // https://github.com/kata-containers/runtime/issues/930 - removeNamespace(&ociSpec, specs.PIDNamespace) - return &ociSpec, bundlePath, nil }