From dcc16999c827dc798c4cacc6a1734d01cecf5a1c Mon Sep 17 00:00:00 2001 From: Luke Mallon Date: Mon, 15 Sep 2025 15:16:24 +0100 Subject: [PATCH] fix: go module name convention --- example/hello-populator/main.go | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/hello-populator/main.go b/example/hello-populator/main.go index ba13f0d4..885f1a5e 100644 --- a/example/hello-populator/main.go +++ b/example/hello-populator/main.go @@ -28,7 +28,7 @@ import ( "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/klog/v2" - populator_machinery "github.com/kubernetes-csi/lib-volume-populator/populator-machinery" + populator_machinery "github.com/kubernetes-csi/lib-volume-populator/v2/populator-machinery" ) const ( diff --git a/go.mod b/go.mod index 39961d68..f1b15166 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/kubernetes-csi/lib-volume-populator +module github.com/kubernetes-csi/lib-volume-populator/v2 go 1.19