Skip to content

Commit

Permalink
Migrate reconcilers to unversioned packages
Browse files Browse the repository at this point in the history
Part of refactoring for adding v1beta1 support.
Ref tektoncd#1067

Signed-off-by: Dibyo Mukherjee <[email protected]>
  • Loading branch information
dibyom authored and tekton-robot committed May 18, 2021
1 parent 7ed26a6 commit 90f7cca
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ import (
"flag"
"os"

"github.com/tektoncd/triggers/pkg/reconciler/v1alpha1/clusterinterceptor"
"github.com/tektoncd/triggers/pkg/reconciler/clusterinterceptor"

corev1 "k8s.io/api/core/v1"
"knative.dev/pkg/injection"
"knative.dev/pkg/injection/sharedmain"
"knative.dev/pkg/signals"

"github.com/tektoncd/triggers/pkg/reconciler/v1alpha1/eventlistener"
"github.com/tektoncd/triggers/pkg/reconciler/eventlistener"
)

const (
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/eventlistener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
triggersv1 "github.com/tektoncd/triggers/pkg/apis/triggers/v1alpha1"
eventReconciler "github.com/tektoncd/triggers/pkg/reconciler/v1alpha1/eventlistener"
eventReconciler "github.com/tektoncd/triggers/pkg/reconciler/eventlistener"
"github.com/tektoncd/triggers/pkg/sink"
bldr "github.com/tektoncd/triggers/test/builder"
corev1 "k8s.io/api/core/v1"
Expand Down

0 comments on commit 90f7cca

Please sign in to comment.