From e76bffe35341f94fc514581110502098dead6e19 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 9 Dec 2021 08:52:39 +0100 Subject: [PATCH] cleanup: import k8s.io/mount-utils instead of k8s.io/utils/mount k8s.io/utils/mount has moved to k8s.io/mount-utils, and Ceph-CSI uses that already in most locations. Only internal/util/util.go still imports the old path. Signed-off-by: Niels de Vos --- internal/util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/util.go b/internal/util/util.go index 33dd04872..6bf522713 100644 --- a/internal/util/util.go +++ b/internal/util/util.go @@ -31,7 +31,7 @@ import ( "golang.org/x/sys/unix" "k8s.io/apimachinery/pkg/util/validation" "k8s.io/cloud-provider/volume/helpers" - "k8s.io/utils/mount" + mount "k8s.io/mount-utils" ) // RoundOffVolSize rounds up given quantity up to chunks of MiB/GiB.