From 52afa34f52dc167ceb74f4af4298fc0aca3f4e67 Mon Sep 17 00:00:00 2001 From: Samuel Karp Date: Sun, 7 May 2023 15:22:00 -0700 Subject: [PATCH] cri: update WithoutDefaultSecuritySettings comment This pointer to an issue never got updated after the CRI plugin was absorbed into the main containerd repo as an in-tree plugin. Signed-off-by: Samuel Karp --- pkg/cri/opts/spec_opts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cri/opts/spec_opts.go b/pkg/cri/opts/spec_opts.go index d0c9896f6..8980afb39 100644 --- a/pkg/cri/opts/spec_opts.go +++ b/pkg/cri/opts/spec_opts.go @@ -161,7 +161,7 @@ func WithoutDefaultSecuritySettings(_ context.Context, _ oci.Client, c *containe if s.Linux != nil { s.Linux.Seccomp = nil } - // Remove default rlimits (See issue #515) + // Remove default rlimits (See https://github.com/containerd/cri/issues/515) s.Process.Rlimits = nil return nil }