From 97c358fe5beafc3afba01aff6daf7f91fdc0efbf Mon Sep 17 00:00:00 2001 From: hasheddan Date: Tue, 17 Nov 2020 12:02:27 -0600 Subject: [PATCH] Fix link to cadvisor CRI-O sock path Fixes link to point to CRI-O sock constant defined in cadvisor. We cannot pin directly because of linux build tags in transitive dependency opencontaines/runc. Signed-off-by: hasheddan --- pkg/kubelet/cadvisor/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/cadvisor/util.go b/pkg/kubelet/cadvisor/util.go index 8fdf0b9dae6..6020abd4dee 100644 --- a/pkg/kubelet/cadvisor/util.go +++ b/pkg/kubelet/cadvisor/util.go @@ -30,7 +30,7 @@ import ( const ( // CrioSocket is the path to the CRI-O socket. // Please keep this in sync with the one in: - // github.com/google/cadvisor/container/crio/client.go + // github.com/google/cadvisor/tree/master/container/crio/client.go CrioSocket = "/var/run/crio/crio.sock" )