Skip to content

Commit

Permalink
[FIX] module path
Browse files Browse the repository at this point in the history
  • Loading branch information
tarteo committed Dec 5, 2024
1 parent cdcfd16 commit a9a28c2
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ domain: onestein.nl
layout:
- go.kubebuilder.io/v4
projectName: s3-operator
repo: github.com/onesteinbv/s3-operator
repo: github.com/tarteo/s3-operator
resources:
- api:
crdVersion: v1
Expand All @@ -15,6 +15,6 @@ resources:
domain: onestein.nl
group: s3
kind: Bucket
path: github.com/onesteinbv/s3-operator/api/v1
path: github.com/tarteo/s3-operator/api/v1
version: v1
version: "3"
4 changes: 2 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import (
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"sigs.k8s.io/controller-runtime/pkg/webhook"

s3v1 "github.com/onesteinbv/s3-operator/api/v1"
"github.com/onesteinbv/s3-operator/internal/controller"
s3v1 "github.com/tarteo/s3-operator/api/v1"
"github.com/tarteo/s3-operator/internal/controller"
// +kubebuilder:scaffold:imports
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/onesteinbv/s3-operator
module github.com/tarteo/s3-operator

go 1.22.0

Expand Down
2 changes: 1 addition & 1 deletion internal/controller/bucket_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
s3v1 "github.com/onesteinbv/s3-operator/api/v1"
s3v1 "github.com/tarteo/s3-operator/api/v1"
)

// BucketReconciler reconciles a Bucket object
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/bucket_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

s3v1 "github.com/onesteinbv/s3-operator/api/v1"
s3v1 "github.com/tarteo/s3-operator/api/v1"
)

var _ = Describe("Bucket Controller", func() {
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

s3v1 "github.com/onesteinbv/s3-operator/api/v1"
s3v1 "github.com/tarteo/s3-operator/api/v1"
// +kubebuilder:scaffold:imports
)

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"github.com/onesteinbv/s3-operator/test/utils"
"github.com/tarteo/s3-operator/test/utils"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

"github.com/onesteinbv/s3-operator/test/utils"
"github.com/tarteo/s3-operator/test/utils"
)

// namespace where the project is deployed in
Expand Down

0 comments on commit a9a28c2

Please sign in to comment.