From 88bcbb0361d7b7c278a24aa2894e715cecd4ca38 Mon Sep 17 00:00:00 2001 From: Mike Brown Date: Fri, 15 Jul 2022 17:00:56 -0500 Subject: [PATCH] adds a comment explaining how to disable experimental sbserver Signed-off-by: Mike Brown --- pkg/cri/cri.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cri/cri.go b/pkg/cri/cri.go index 70fcc0419..61d1839ce 100644 --- a/pkg/cri/cri.go +++ b/pkg/cri/cri.go @@ -101,7 +101,7 @@ func initCRIService(ic *plugin.InitContext) (interface{}, error) { var s server.CRIService if os.Getenv("ENABLE_CRI_SANDBOXES") != "" { - log.G(ctx).Info("using experimental CRI Sandbox server") + log.G(ctx).Info("using experimental CRI Sandbox server - unset ENABLE_CRI_SANDBOXES to disable") s, err = sbserver.NewCRIService(c, client) } else { log.G(ctx).Info("using legacy CRI server")