From 07d48f66485597f6855792882bae6c75f8c276cc Mon Sep 17 00:00:00 2001 From: "Nelo-T. Wallus" Date: Thu, 2 Oct 2025 16:05:35 +0200 Subject: [PATCH] Fix missing kcp=>contrib/kcp renames Signed-off-by: Nelo-T. Wallus Signed-off-by: Nelo-T. Wallus --- contrib/kcp/bootstrap/config.go | 2 +- contrib/kcp/bootstrap/config/core/bootstrap.go | 2 +- contrib/kcp/bootstrap/server.go | 6 +++--- contrib/kcp/cmd/kcp-init/main.go | 4 ++-- contrib/kcp/deploy/bootstrap.go | 2 +- contrib/kcp/go.mod | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/contrib/kcp/bootstrap/config.go b/contrib/kcp/bootstrap/config.go index 38da0e3ea..7ac931f27 100644 --- a/contrib/kcp/bootstrap/config.go +++ b/contrib/kcp/bootstrap/config.go @@ -25,7 +25,7 @@ import ( "k8s.io/client-go/rest" "k8s.io/client-go/tools/clientcmd" - "github.com/kube-bind/kube-bind/kcp/bootstrap/options" + "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/options" ) type Config struct { diff --git a/contrib/kcp/bootstrap/config/core/bootstrap.go b/contrib/kcp/bootstrap/config/core/bootstrap.go index 57b8dbd4b..2512482c8 100644 --- a/contrib/kcp/bootstrap/config/core/bootstrap.go +++ b/contrib/kcp/bootstrap/config/core/bootstrap.go @@ -25,7 +25,7 @@ import ( "github.com/kcp-dev/logicalcluster/v3" "k8s.io/apimachinery/pkg/util/sets" - "github.com/kube-bind/kube-bind/kcp/bootstrap/config/core/resources" + "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/config/core/resources" ) var ( diff --git a/contrib/kcp/bootstrap/server.go b/contrib/kcp/bootstrap/server.go index da5e05951..8453090f4 100644 --- a/contrib/kcp/bootstrap/server.go +++ b/contrib/kcp/bootstrap/server.go @@ -22,9 +22,9 @@ import ( "k8s.io/apimachinery/pkg/util/sets" "k8s.io/klog/v2" - bootstrapconfig "github.com/kube-bind/kube-bind/kcp/bootstrap/config/config" - bootstrapcore "github.com/kube-bind/kube-bind/kcp/bootstrap/config/core" - bootstrapkubebind "github.com/kube-bind/kube-bind/kcp/bootstrap/config/kcp" + bootstrapconfig "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/config/config" + bootstrapcore "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/config/core" + bootstrapkubebind "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/config/kcp" ) type Server struct { diff --git a/contrib/kcp/cmd/kcp-init/main.go b/contrib/kcp/cmd/kcp-init/main.go index e4791cb0d..5de64e5af 100644 --- a/contrib/kcp/cmd/kcp-init/main.go +++ b/contrib/kcp/cmd/kcp-init/main.go @@ -26,8 +26,8 @@ import ( logsv1 "k8s.io/component-base/logs/api/v1" "k8s.io/klog/v2" - bootstrap "github.com/kube-bind/kube-bind/kcp/bootstrap" - "github.com/kube-bind/kube-bind/kcp/bootstrap/options" + bootstrap "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap" + "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/options" ) func main() { diff --git a/contrib/kcp/deploy/bootstrap.go b/contrib/kcp/deploy/bootstrap.go index 86d02c335..d1b9bd2e0 100644 --- a/contrib/kcp/deploy/bootstrap.go +++ b/contrib/kcp/deploy/bootstrap.go @@ -32,7 +32,7 @@ import ( "k8s.io/apimachinery/pkg/util/wait" "k8s.io/klog/v2" - "github.com/kube-bind/kube-bind/kcp/bootstrap/config/kcp/resources" + "github.com/kube-bind/kube-bind/contrib/kcp/bootstrap/config/kcp/resources" ) var ( diff --git a/contrib/kcp/go.mod b/contrib/kcp/go.mod index eb34eb92e..d7e3f5cda 100644 --- a/contrib/kcp/go.mod +++ b/contrib/kcp/go.mod @@ -1,4 +1,4 @@ -module github.com/kube-bind/kube-bind/kcp +module github.com/kube-bind/kube-bind/contrib/kcp go 1.24.0