Skip to content

Commit

Permalink
Rename the repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
bigkevmcd committed Jan 10, 2023
1 parent 0aaefd3 commit 9fd4484
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ domain: weave.works
layout:
- go.kubebuilder.io/v3
projectName: gitopssets-controller
repo: github.com/weaveworks/gitops-sets-controller
repo: github.com/weaveworks/gitopssets-controller
resources:
- api:
crdVersion: v1
Expand All @@ -11,6 +11,6 @@ resources:
domain: weave.works
group: templates
kind: GitOpsSet
path: github.com/weaveworks/gitops-sets-controller/api/v1alpha1
path: github.com/weaveworks/gitopssets-controller/api/v1alpha1
version: v1alpha1
version: "3"
2 changes: 1 addition & 1 deletion controllers/gitopsset_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/log"

templatesv1alpha1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
templatesv1alpha1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
)

// GitOpsSetReconciler reconciles a GitOpsSet object
Expand Down
2 changes: 1 addition & 1 deletion controllers/templates/generators/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/go-logr/logr"
templatesv1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
templatesv1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
)

// GeneratorFactory is a way to create a per-reconciliation generator.
Expand Down
4 changes: 2 additions & 2 deletions controllers/templates/generators/list/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"time"

"github.com/go-logr/logr"
templatesv1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
"github.com/weaveworks/gitops-sets-controller/controllers/templates/generators"
templatesv1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
"github.com/weaveworks/gitopssets-controller/controllers/templates/generators"
)

// ListGenerator is a generic JSON object list.
Expand Down
6 changes: 3 additions & 3 deletions controllers/templates/generators/list/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"github.com/go-logr/logr"
"github.com/google/go-cmp/cmp"
templatesv1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
"github.com/weaveworks/gitops-sets-controller/controllers/templates/generators"
"github.com/weaveworks/gitops-sets-controller/test"
templatesv1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
"github.com/weaveworks/gitopssets-controller/controllers/templates/generators"
"github.com/weaveworks/gitopssets-controller/test"
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
)

Expand Down
4 changes: 2 additions & 2 deletions controllers/templates/renderer.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import (
"text/template"

"github.com/gitops-tools/pkg/sanitize"
"github.com/weaveworks/gitops-sets-controller/controllers/templates/generators"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
yamlserializer "k8s.io/apimachinery/pkg/runtime/serializer/yaml"
"k8s.io/apimachinery/pkg/util/yaml"

templatesv1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
templatesv1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
"github.com/weaveworks/gitopssets-controller/controllers/templates/generators"
)

var funcMap = template.FuncMap{
Expand Down
8 changes: 4 additions & 4 deletions controllers/templates/renderer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (
"k8s.io/apimachinery/pkg/util/intstr"
"sigs.k8s.io/yaml"

templatesv1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
"github.com/weaveworks/gitops-sets-controller/controllers/templates/generators"
"github.com/weaveworks/gitops-sets-controller/controllers/templates/generators/list"
"github.com/weaveworks/gitops-sets-controller/test"
templatesv1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
"github.com/weaveworks/gitopssets-controller/controllers/templates/generators"
"github.com/weaveworks/gitopssets-controller/controllers/templates/generators/list"
"github.com/weaveworks/gitopssets-controller/test"
)

const (
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/weaveworks/gitops-sets-controller
module github.com/weaveworks/gitopssets-controller

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

templatesv1alpha1 "github.com/weaveworks/gitops-sets-controller/api/v1alpha1"
"github.com/weaveworks/gitops-sets-controller/controllers"
templatesv1alpha1 "github.com/weaveworks/gitopssets-controller/api/v1alpha1"
"github.com/weaveworks/gitopssets-controller/controllers"
//+kubebuilder:scaffold:imports
)

Expand Down

0 comments on commit 9fd4484

Please sign in to comment.