From eaf2954ad8711fabe4374c8273e960b9d8972072 Mon Sep 17 00:00:00 2001 From: Mauricio Poppe Date: Fri, 16 Apr 2021 00:01:18 +0000 Subject: [PATCH] Add a TODO to install sync in agnhost --- test/e2e/framework/kubectl/kubectl_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/kubectl/kubectl_utils.go b/test/e2e/framework/kubectl/kubectl_utils.go index f435453a0c8..e95d4b5f148 100644 --- a/test/e2e/framework/kubectl/kubectl_utils.go +++ b/test/e2e/framework/kubectl/kubectl_utils.go @@ -142,7 +142,7 @@ func (tk *TestKubeconfig) WriteFileViaContainer(podName, containerName string, p } } command := fmt.Sprintf("echo '%s' > '%s'; sync", contents, path) - // TODO: replace with `framework.NodeOSDistroIs` when #81245 is complete + // TODO(mauriciopoppe): remove this statement once we add `sync` to the test image, ref #101172 if e2epod.NodeOSDistroIs("windows") { command = fmt.Sprintf("echo '%s' > '%s';", contents, path) }