Skip to content

Commit

Permalink
fixup imports for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jun 26, 2024
1 parent e216b50 commit 8d6975c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion controlplane/controllers/machine_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"time"

"github.com/canonical/cluster-api-k8s/pkg/ck8s"
"github.com/go-logr/logr"
"github.com/pkg/errors"
apierrors "k8s.io/apimachinery/pkg/api/errors"
Expand All @@ -15,6 +14,8 @@ import (
"sigs.k8s.io/cluster-api/util/patch"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/canonical/cluster-api-k8s/pkg/ck8s"
)

// CK8sControlPlaneReconciler reconciles a CK8sControlPlane object.
Expand Down
3 changes: 2 additions & 1 deletion pkg/ck8s/management_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ import (
"fmt"
"time"

"github.com/canonical/cluster-api-k8s/pkg/token"
"k8s.io/client-go/kubernetes/scheme"
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
"sigs.k8s.io/cluster-api/controllers/remote"
"sigs.k8s.io/cluster-api/util/collections"
"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/canonical/cluster-api-k8s/pkg/token"
)

// ManagementCluster defines all behaviors necessary for something to function as a management cluster.
Expand Down

0 comments on commit 8d6975c

Please sign in to comment.