Skip to content

Commit

Permalink
Fix reabse issues
Browse files Browse the repository at this point in the history
  • Loading branch information
levikobi committed Oct 27, 2023
1 parent 6841355 commit 28f2ddb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.20 as builder
FROM golang:1.21 as builder

LABEL org.opencontainers.image.source=https://github.com/kubernetes-sigs/blixt
LABEL org.opencontainers.image.description="An experimental layer 4 load-balancer built using eBPF/XDP with ebpf-go \
Expand Down
4 changes: 2 additions & 2 deletions controllers/dataplane_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/predicate"

dataplane "github.com/kong/blixt/internal/dataplane/client"
"github.com/kong/blixt/pkg/vars"
dataplane "github.com/kubernetes-sigs/blixt/internal/dataplane/client"
"github.com/kubernetes-sigs/blixt/pkg/vars"
)

//+kubebuilder:rbac:groups=gateway.networking.k8s.io,resources=gateways,verbs=get;list;watch;create;update;patch;delete
Expand Down
8 changes: 2 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import (
"context"
"flag"
"os"
"sigs.k8s.io/controller-runtime/pkg/event"

// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
// to ensure that exec-entrypoint and run can make use of them.
Expand All @@ -30,18 +29,15 @@ import (
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/event"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
gatewayv1alpha2 "sigs.k8s.io/gateway-api/apis/v1alpha2"
gatewayv1beta1 "sigs.k8s.io/gateway-api/apis/v1beta1"

<<<<<<< HEAD
"github.com/kubernetes-sigs/blixt/controllers"
=======
"github.com/kong/blixt/controllers"
"github.com/kong/blixt/internal/dataplane/client"
>>>>>>> 6573c27 (Add dataplane controller and multi gRPC clients manager)
"github.com/kubernetes-sigs/blixt/internal/dataplane/client"
//+kubebuilder:scaffold:imports
)

Expand Down

0 comments on commit 28f2ddb

Please sign in to comment.