diff --git a/internal/infrastructure/kubernetes/infra_resource.go b/internal/infrastructure/kubernetes/infra_resource.go index c8a1307bd73..e9f95dce38b 100644 --- a/internal/infrastructure/kubernetes/infra_resource.go +++ b/internal/infrastructure/kubernetes/infra_resource.go @@ -9,11 +9,12 @@ import ( "context" "reflect" - "github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" + + "github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource" ) // createOrUpdateServiceAccount creates a ServiceAccount in the kube api server based on the diff --git a/internal/infrastructure/kubernetes/resource/resource.go b/internal/infrastructure/kubernetes/resource/resource.go index 671c1a2bb13..357b068c380 100644 --- a/internal/infrastructure/kubernetes/resource/resource.go +++ b/internal/infrastructure/kubernetes/resource/resource.go @@ -6,11 +6,12 @@ package resource import ( - egcfgv1a1 "github.com/envoyproxy/gateway/api/config/v1alpha1" "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + egcfgv1a1 "github.com/envoyproxy/gateway/api/config/v1alpha1" ) // GetSelector returns a label selector used to select resources