diff --git a/cmd/main.go b/cmd/main.go index c18d5e5..7c205ec 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -21,8 +21,9 @@ import ( "flag" "os" "path/filepath" - // Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.) - // to ensure that exec-entrypoint and run can make use of them. + + locustiov1alpha1 "git.lilpenguins.com/crichardson/locust-operator/api/v1alpha1" + "git.lilpenguins.com/crichardson/locust-operator/internal/controller" "go.uber.org/zap" "k8s.io/apimachinery/pkg/runtime" utilruntime "k8s.io/apimachinery/pkg/util/runtime" @@ -31,9 +32,6 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/certwatcher" "sigs.k8s.io/controller-runtime/pkg/healthz" - // "sigs.k8s.io/controller-runtime/pkg/log/zap" - locustiov1alpha1 "git.lilpenguins.com/crichardson/locust-operator/api/v1alpha1" - "git.lilpenguins.com/crichardson/locust-operator/internal/controller" "sigs.k8s.io/controller-runtime/pkg/metrics/filters" metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server" "sigs.k8s.io/controller-runtime/pkg/webhook"