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 <ndevos@redhat.com>
This commit is contained in:
Niels de Vos 2021-12-09 08:52:39 +01:00 committed by mergify[bot]
parent 4ebfeaaa75
commit e76bffe353

View File

@ -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.