From 93b625633ad4365b9d88fde3463f741f7405621c Mon Sep 17 00:00:00 2001 From: Guilherme Cassolato Date: Thu, 22 Apr 2021 18:25:37 +0200 Subject: [PATCH] Update all 3scale-labs -> kuadrant refs Now that Authorino has been moved to Kuadrant org, we need to update all the refs. --- PROJECT | 2 +- controllers/secret_controller.go | 6 +++--- controllers/secret_controller_test.go | 2 +- controllers/service_controller.go | 18 +++++++++--------- controllers/service_controller_test.go | 6 +++--- controllers/suite_test.go | 2 +- docs/architecture.md | 16 ++++++++-------- docs/contributing.md | 6 +++--- docs/deploy.md | 2 +- docs/tutorials/showcase/README.md | 2 +- go.mod | 2 +- main.go | 8 ++++---- pkg/cache/cache.go | 2 +- pkg/cache/cache_test.go | 4 ++-- pkg/common/auth.go | 2 +- pkg/common/mocks/mock_common.go | 4 ++-- pkg/config/authorization.go | 4 ++-- pkg/config/authorization/json.go | 2 +- pkg/config/authorization/json_test.go | 2 +- pkg/config/authorization/opa.go | 2 +- pkg/config/config.go | 2 +- pkg/config/identity.go | 6 +++--- pkg/config/identity/api_key.go | 4 ++-- pkg/config/identity/api_key_test.go | 4 ++-- pkg/config/identity/hmac.go | 4 ++-- pkg/config/identity/kubernetes_auth.go | 4 ++-- pkg/config/identity/kubernetes_auth_test.go | 4 ++-- pkg/config/identity/mtls.go | 4 ++-- pkg/config/identity/oauth2.go | 4 ++-- pkg/config/identity/oauth2_test.go | 4 ++-- pkg/config/identity/oidc.go | 4 ++-- pkg/config/metadata.go | 4 ++-- pkg/config/metadata/uma.go | 2 +- pkg/config/metadata/uma_test.go | 2 +- pkg/config/metadata/user_info.go | 4 ++-- pkg/config/metadata/user_info_test.go | 6 +++--- pkg/service/auth.go | 2 +- pkg/service/auth_pipeline.go | 4 ++-- pkg/service/auth_pipeline_test.go | 4 ++-- pkg/service/auth_test.go | 2 +- 40 files changed, 84 insertions(+), 84 deletions(-) diff --git a/PROJECT b/PROJECT index f1372788..33db1481 100644 --- a/PROJECT +++ b/PROJECT @@ -1,7 +1,7 @@ domain: authorino.3scale.net layout: go.kubebuilder.io/v2 projectName: authorino -repo: github.com/3scale-labs/authorino/ +repo: github.com/kuadrant/authorino/ resources: - group: config kind: Service diff --git a/controllers/secret_controller.go b/controllers/secret_controller.go index 40860f3a..0f4b1116 100644 --- a/controllers/secret_controller.go +++ b/controllers/secret_controller.go @@ -4,9 +4,9 @@ import ( "context" "reflect" - "github.com/3scale-labs/authorino/api/v1beta1" - configv1beta1 "github.com/3scale-labs/authorino/api/v1beta1" - "github.com/3scale-labs/authorino/pkg/common" + "github.com/kuadrant/authorino/api/v1beta1" + configv1beta1 "github.com/kuadrant/authorino/api/v1beta1" + "github.com/kuadrant/authorino/pkg/common" "github.com/go-logr/logr" v1 "k8s.io/api/core/v1" diff --git a/controllers/secret_controller_test.go b/controllers/secret_controller_test.go index 57905a0e..0335bcce 100644 --- a/controllers/secret_controller_test.go +++ b/controllers/secret_controller_test.go @@ -3,7 +3,7 @@ package controllers import ( "testing" - "github.com/3scale-labs/authorino/api/v1beta1" + "github.com/kuadrant/authorino/api/v1beta1" "gotest.tools/assert" v1 "k8s.io/api/core/v1" diff --git a/controllers/service_controller.go b/controllers/service_controller.go index a8abf4b7..a0df467e 100644 --- a/controllers/service_controller.go +++ b/controllers/service_controller.go @@ -20,15 +20,15 @@ import ( "context" "fmt" - configv1beta1 "github.com/3scale-labs/authorino/api/v1beta1" - "github.com/3scale-labs/authorino/pkg/cache" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" - "github.com/3scale-labs/authorino/pkg/config" - authorinoService "github.com/3scale-labs/authorino/pkg/config" - authorinoAuthorization "github.com/3scale-labs/authorino/pkg/config/authorization" - authorinoIdentity "github.com/3scale-labs/authorino/pkg/config/identity" - authorinoMetadata "github.com/3scale-labs/authorino/pkg/config/metadata" + configv1beta1 "github.com/kuadrant/authorino/api/v1beta1" + "github.com/kuadrant/authorino/pkg/cache" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/config" + authorinoService "github.com/kuadrant/authorino/pkg/config" + authorinoAuthorization "github.com/kuadrant/authorino/pkg/config/authorization" + authorinoIdentity "github.com/kuadrant/authorino/pkg/config/identity" + authorinoMetadata "github.com/kuadrant/authorino/pkg/config/metadata" "github.com/go-logr/logr" v1 "k8s.io/api/core/v1" diff --git a/controllers/service_controller_test.go b/controllers/service_controller_test.go index 2591612a..9983d790 100644 --- a/controllers/service_controller_test.go +++ b/controllers/service_controller_test.go @@ -5,9 +5,9 @@ import ( "os" "testing" - "github.com/3scale-labs/authorino/api/v1beta1" - "github.com/3scale-labs/authorino/pkg/cache" - . "github.com/3scale-labs/authorino/pkg/common/mocks" + "github.com/kuadrant/authorino/api/v1beta1" + "github.com/kuadrant/authorino/pkg/cache" + . "github.com/kuadrant/authorino/pkg/common/mocks" "gotest.tools/assert" v1 "k8s.io/api/core/v1" diff --git a/controllers/suite_test.go b/controllers/suite_test.go index f7a7f2c2..f509ce6e 100644 --- a/controllers/suite_test.go +++ b/controllers/suite_test.go @@ -30,7 +30,7 @@ import ( logf "sigs.k8s.io/controller-runtime/pkg/log" "sigs.k8s.io/controller-runtime/pkg/log/zap" - configv1beta1 "github.com/3scale-labs/authorino/api/v1beta1" + configv1beta1 "github.com/kuadrant/authorino/api/v1beta1" // +kubebuilder:scaffold:imports ) diff --git a/docs/architecture.md b/docs/architecture.md index ff23f762..2237b9b4 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -80,11 +80,11 @@ The authorization policies evaluated in phase (iii) can use any info from the au mTLS - Planned (#8) + Planned (#8) HMAC - Planned (#9) + Planned (#9) OAuth 2.0 (token introspection) @@ -113,7 +113,7 @@ The authorization policies evaluated in phase (iii) can use any info from the au HTTP GET-by-POST - Planned (#10) + Planned (#10) Policy enforcement @@ -143,11 +143,11 @@ The authorization policies evaluated in phase (iii) can use any info from the au Revoked access tokens - In analysis (#19) + In analysis (#19) Resource data - Planned (#21) + Planned (#21) Compiled Rego policies @@ -155,15 +155,15 @@ The authorization policies evaluated in phase (iii) can use any info from the au Repeated requests - In analysis (#20) + In analysis (#20) Mutate request with auth data - Planned (#22) + Planned (#22) Token normalization (Edge Auth) - In analysis (#24) + In analysis (#24) Multitenancy (multiple upstreams and hosts) diff --git a/docs/contributing.md b/docs/contributing.md index f7891f49..f5452c3a 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -2,9 +2,9 @@ ## Open issues -Start by checking the list of [issues](https://github.com/3scale-labs/authorino/issues) in GitHub. Maybe your idea was discussed in the past or is part of an ongoing conversation. +Start by checking the list of [issues](https://github.com/kuadrant/authorino/issues) in GitHub. Maybe your idea was discussed in the past or is part of an ongoing conversation. -In case it is a new idea for enhancement, a bug fix, a question or whatever unprecedented contribution you want to share, before sending a pull-request, please make sure to [describe the issue](https://github.com/3scale-labs/authorino/issues/new) so we can have a conversation together and help you fin dthe best way to get your contribution merged. +In case it is a new idea for enhancement, a bug fix, a question or whatever unprecedented contribution you want to share, before sending a pull-request, please make sure to [describe the issue](https://github.com/kuadrant/authorino/issues/new) so we can have a conversation together and help you fin dthe best way to get your contribution merged. ## Local setup @@ -16,7 +16,7 @@ Make sure you have installed: Then fork the repo and download the Golang dependencies: ```sh -git clone git@github.com:3scale-labs/authorino.git && cd authorino +git clone git@github.com:kuadrant/authorino.git && cd authorino make vendor ``` diff --git a/docs/deploy.md b/docs/deploy.md index 41de8b6f..93d452f5 100644 --- a/docs/deploy.md +++ b/docs/deploy.md @@ -11,7 +11,7 @@ This is the easiest way to get Authorino's Kubernetes resources and deployment utils. ```sh -git clone git@github.com:3scale-labs/authorino.git && cd authorino +git clone git@github.com:kuadrant/authorino.git && cd authorino ``` ## Meet the requirements diff --git a/docs/tutorials/showcase/README.md b/docs/tutorials/showcase/README.md index 96c25097..aae24ac6 100644 --- a/docs/tutorials/showcase/README.md +++ b/docs/tutorials/showcase/README.md @@ -73,7 +73,7 @@ On top of this platform, the following applications compose the stack for this t ## Clone the repo ```sh -$ git clone git@github.com:3scale-labs/authorino.git && cd authorino +$ git clone git@github.com:kuadrant/authorino.git && cd authorino ``` ## Setup the trial local environment diff --git a/go.mod b/go.mod index ab39514f..71d335fa 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/3scale-labs/authorino +module github.com/kuadrant/authorino go 1.15 diff --git a/main.go b/main.go index 19d2e4d1..86f0f1c8 100644 --- a/main.go +++ b/main.go @@ -25,10 +25,10 @@ import ( "google.golang.org/grpc" healthpb "google.golang.org/grpc/health/grpc_health_v1" - configv1beta1 "github.com/3scale-labs/authorino/api/v1beta1" - "github.com/3scale-labs/authorino/controllers" - "github.com/3scale-labs/authorino/pkg/cache" - "github.com/3scale-labs/authorino/pkg/service" + configv1beta1 "github.com/kuadrant/authorino/api/v1beta1" + "github.com/kuadrant/authorino/controllers" + "github.com/kuadrant/authorino/pkg/cache" + "github.com/kuadrant/authorino/pkg/service" "k8s.io/apimachinery/pkg/runtime" utilruntime "k8s.io/apimachinery/pkg/util/runtime" diff --git a/pkg/cache/cache.go b/pkg/cache/cache.go index 7c512742..108b5d43 100644 --- a/pkg/cache/cache.go +++ b/pkg/cache/cache.go @@ -4,7 +4,7 @@ import ( "fmt" "sync" - "github.com/3scale-labs/authorino/pkg/config" + "github.com/kuadrant/authorino/pkg/config" ) type Cache struct { diff --git a/pkg/cache/cache_test.go b/pkg/cache/cache_test.go index f0f50983..bb40cb92 100644 --- a/pkg/cache/cache_test.go +++ b/pkg/cache/cache_test.go @@ -4,8 +4,8 @@ import ( "context" "testing" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/config" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/config" "gotest.tools/assert" ) diff --git a/pkg/common/auth.go b/pkg/common/auth.go index a4718503..c86fbad6 100644 --- a/pkg/common/auth.go +++ b/pkg/common/auth.go @@ -3,7 +3,7 @@ package common import ( "golang.org/x/net/context" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" v1 "k8s.io/api/core/v1" diff --git a/pkg/common/mocks/mock_common.go b/pkg/common/mocks/mock_common.go index eb314348..b2ad6664 100644 --- a/pkg/common/mocks/mock_common.go +++ b/pkg/common/mocks/mock_common.go @@ -7,10 +7,10 @@ package mock_common import ( reflect "reflect" - common "github.com/3scale-labs/authorino/pkg/common" - auth_credentials "github.com/3scale-labs/authorino/pkg/common/auth_credentials" envoy_service_auth_v3 "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" gomock "github.com/golang/mock/gomock" + common "github.com/kuadrant/authorino/pkg/common" + auth_credentials "github.com/kuadrant/authorino/pkg/common/auth_credentials" context "golang.org/x/net/context" v1 "k8s.io/api/core/v1" types "k8s.io/apimachinery/pkg/types" diff --git a/pkg/config/authorization.go b/pkg/config/authorization.go index de3231a1..63117b51 100644 --- a/pkg/config/authorization.go +++ b/pkg/config/authorization.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/config/authorization" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/config/authorization" ) var ( diff --git a/pkg/config/authorization/json.go b/pkg/config/authorization/json.go index 98d73124..477d4d75 100644 --- a/pkg/config/authorization/json.go +++ b/pkg/config/authorization/json.go @@ -6,7 +6,7 @@ import ( "fmt" "regexp" - "github.com/3scale-labs/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common" "github.com/tidwall/gjson" ) diff --git a/pkg/config/authorization/json_test.go b/pkg/config/authorization/json_test.go index c22a6f77..5d2665b7 100644 --- a/pkg/config/authorization/json_test.go +++ b/pkg/config/authorization/json_test.go @@ -3,7 +3,7 @@ package authorization import ( "testing" - mock_common "github.com/3scale-labs/authorino/pkg/common/mocks" + mock_common "github.com/kuadrant/authorino/pkg/common/mocks" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" . "github.com/golang/mock/gomock" diff --git a/pkg/config/authorization/opa.go b/pkg/config/authorization/opa.go index 7bc350eb..414eb458 100644 --- a/pkg/config/authorization/opa.go +++ b/pkg/config/authorization/opa.go @@ -5,7 +5,7 @@ import ( "crypto/md5" "fmt" - "github.com/3scale-labs/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common" "github.com/open-policy-agent/opa/rego" ctrl "sigs.k8s.io/controller-runtime" diff --git a/pkg/config/config.go b/pkg/config/config.go index 5464e758..e9d8439e 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -3,7 +3,7 @@ package config import ( "fmt" - "github.com/3scale-labs/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common" ) // APIConfig holds the static configuration to be evaluated in the auth pipeline diff --git a/pkg/config/identity.go b/pkg/config/identity.go index 1a24ca15..76b52c24 100644 --- a/pkg/config/identity.go +++ b/pkg/config/identity.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" - "github.com/3scale-labs/authorino/pkg/config/identity" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/config/identity" v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/types" diff --git a/pkg/config/identity/api_key.go b/pkg/config/identity/api_key.go index 4e501787..f9a192b8 100644 --- a/pkg/config/identity/api_key.go +++ b/pkg/config/identity/api_key.go @@ -8,8 +8,8 @@ import ( "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" ctrl "sigs.k8s.io/controller-runtime" ) diff --git a/pkg/config/identity/api_key_test.go b/pkg/config/identity/api_key_test.go index 031fcabb..4d673450 100644 --- a/pkg/config/identity/api_key_test.go +++ b/pkg/config/identity/api_key_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - . "github.com/3scale-labs/authorino/pkg/common/auth_credentials/mocks" - . "github.com/3scale-labs/authorino/pkg/common/mocks" + . "github.com/kuadrant/authorino/pkg/common/auth_credentials/mocks" + . "github.com/kuadrant/authorino/pkg/common/mocks" . "github.com/golang/mock/gomock" v1 "k8s.io/api/core/v1" diff --git a/pkg/config/identity/hmac.go b/pkg/config/identity/hmac.go index 9d29616a..552d08d7 100644 --- a/pkg/config/identity/hmac.go +++ b/pkg/config/identity/hmac.go @@ -3,8 +3,8 @@ package identity import ( "context" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" ) type HMAC struct { diff --git a/pkg/config/identity/kubernetes_auth.go b/pkg/config/identity/kubernetes_auth.go index a5fb511c..d8270dc7 100644 --- a/pkg/config/identity/kubernetes_auth.go +++ b/pkg/config/identity/kubernetes_auth.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" jwt "github.com/dgrijalva/jwt-go" authv1 "k8s.io/api/authentication/v1" diff --git a/pkg/config/identity/kubernetes_auth_test.go b/pkg/config/identity/kubernetes_auth_test.go index e3093ed6..36cd930c 100644 --- a/pkg/config/identity/kubernetes_auth_test.go +++ b/pkg/config/identity/kubernetes_auth_test.go @@ -5,8 +5,8 @@ import ( "encoding/json" "testing" - mock_auth_credentials "github.com/3scale-labs/authorino/pkg/common/auth_credentials/mocks" - mock_common "github.com/3scale-labs/authorino/pkg/common/mocks" + mock_auth_credentials "github.com/kuadrant/authorino/pkg/common/auth_credentials/mocks" + mock_common "github.com/kuadrant/authorino/pkg/common/mocks" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" "github.com/golang/mock/gomock" diff --git a/pkg/config/identity/mtls.go b/pkg/config/identity/mtls.go index 3288f6ee..4fb453bc 100644 --- a/pkg/config/identity/mtls.go +++ b/pkg/config/identity/mtls.go @@ -3,8 +3,8 @@ package identity import ( "context" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" ) type MTLS struct { diff --git a/pkg/config/identity/oauth2.go b/pkg/config/identity/oauth2.go index c66c4038..7202fcf0 100644 --- a/pkg/config/identity/oauth2.go +++ b/pkg/config/identity/oauth2.go @@ -7,8 +7,8 @@ import ( "net/http" "net/url" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" ) type OAuth2 struct { diff --git a/pkg/config/identity/oauth2_test.go b/pkg/config/identity/oauth2_test.go index 13437476..5f479d9d 100644 --- a/pkg/config/identity/oauth2_test.go +++ b/pkg/config/identity/oauth2_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - . "github.com/3scale-labs/authorino/pkg/common/auth_credentials/mocks" - . "github.com/3scale-labs/authorino/pkg/common/mocks" + . "github.com/kuadrant/authorino/pkg/common/auth_credentials/mocks" + . "github.com/kuadrant/authorino/pkg/common/mocks" . "github.com/golang/mock/gomock" diff --git a/pkg/config/identity/oidc.go b/pkg/config/identity/oidc.go index aed8cbfc..df403be8 100644 --- a/pkg/config/identity/oidc.go +++ b/pkg/config/identity/oidc.go @@ -4,8 +4,8 @@ import ( "context" "net/url" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/common/auth_credentials" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common/auth_credentials" goidc "github.com/coreos/go-oidc" ) diff --git a/pkg/config/metadata.go b/pkg/config/metadata.go index 74a773bb..3a55e788 100644 --- a/pkg/config/metadata.go +++ b/pkg/config/metadata.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/config/metadata" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/config/metadata" ) var ( diff --git a/pkg/config/metadata/uma.go b/pkg/config/metadata/uma.go index 4a6c05ca..47dc6ad3 100644 --- a/pkg/config/metadata/uma.go +++ b/pkg/config/metadata/uma.go @@ -9,7 +9,7 @@ import ( "strings" "sync" - "github.com/3scale-labs/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/common" ) type providerJSON struct { diff --git a/pkg/config/metadata/uma_test.go b/pkg/config/metadata/uma_test.go index 225aacce..3a072799 100644 --- a/pkg/config/metadata/uma_test.go +++ b/pkg/config/metadata/uma_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - . "github.com/3scale-labs/authorino/pkg/common/mocks" + . "github.com/kuadrant/authorino/pkg/common/mocks" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" . "github.com/golang/mock/gomock" diff --git a/pkg/config/metadata/user_info.go b/pkg/config/metadata/user_info.go index a7859473..823522cd 100644 --- a/pkg/config/metadata/user_info.go +++ b/pkg/config/metadata/user_info.go @@ -6,8 +6,8 @@ import ( "fmt" "net/http" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/config/identity" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/config/identity" ) type UserInfo struct { diff --git a/pkg/config/metadata/user_info_test.go b/pkg/config/metadata/user_info_test.go index 067fa786..b6c81b5f 100644 --- a/pkg/config/metadata/user_info_test.go +++ b/pkg/config/metadata/user_info_test.go @@ -6,14 +6,14 @@ import ( "os" "testing" - . "github.com/3scale-labs/authorino/pkg/common/auth_credentials/mocks" - . "github.com/3scale-labs/authorino/pkg/common/mocks" + . "github.com/kuadrant/authorino/pkg/common/auth_credentials/mocks" + . "github.com/kuadrant/authorino/pkg/common/mocks" . "github.com/golang/mock/gomock" "gotest.tools/assert" - "github.com/3scale-labs/authorino/pkg/config/identity" + "github.com/kuadrant/authorino/pkg/config/identity" ) const ( diff --git a/pkg/service/auth.go b/pkg/service/auth.go index 1db7c354..cf6d8f5d 100644 --- a/pkg/service/auth.go +++ b/pkg/service/auth.go @@ -6,7 +6,7 @@ import ( "golang.org/x/net/context" ctrl "sigs.k8s.io/controller-runtime" - "github.com/3scale-labs/authorino/pkg/cache" + "github.com/kuadrant/authorino/pkg/cache" envoy_core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" diff --git a/pkg/service/auth_pipeline.go b/pkg/service/auth_pipeline.go index 20f4430c..21b3df6e 100644 --- a/pkg/service/auth_pipeline.go +++ b/pkg/service/auth_pipeline.go @@ -5,8 +5,8 @@ import ( "fmt" "sync" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/config" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/config" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" "github.com/gogo/googleapis/google/rpc" diff --git a/pkg/service/auth_pipeline_test.go b/pkg/service/auth_pipeline_test.go index 6851c297..78468637 100644 --- a/pkg/service/auth_pipeline_test.go +++ b/pkg/service/auth_pipeline_test.go @@ -8,8 +8,8 @@ import ( "gotest.tools/assert" - "github.com/3scale-labs/authorino/pkg/common" - "github.com/3scale-labs/authorino/pkg/config" + "github.com/kuadrant/authorino/pkg/common" + "github.com/kuadrant/authorino/pkg/config" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3" ) diff --git a/pkg/service/auth_test.go b/pkg/service/auth_test.go index d396b87d..041ff6c4 100644 --- a/pkg/service/auth_test.go +++ b/pkg/service/auth_test.go @@ -5,7 +5,7 @@ import ( "gotest.tools/assert" - "github.com/3scale-labs/authorino/pkg/cache" + "github.com/kuadrant/authorino/pkg/cache" envoy_core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3" envoy_auth "github.com/envoyproxy/go-control-plane/envoy/service/auth/v3"