Skip to content

Commit b6097d9

Browse files
committed
Update references to functions-dev
1 parent b5d6ba4 commit b6097d9

12 files changed

Lines changed: 24 additions & 24 deletions

File tree

.mockery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ require-template-schema-exists: true
1111
template: testify
1212
template-schema: '{{.Template}}.schema.json'
1313
packages:
14-
github.com/creydr/func-operator/internal/funccli:
14+
github.com/functions-dev/func-operator/internal/funccli:
1515
interfaces:
1616
Manager:
17-
github.com/creydr/func-operator/internal/git:
17+
github.com/functions-dev/func-operator/internal/git:
1818
interfaces:
1919
Manager:

PROJECT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ plugins:
99
manifests.sdk.operatorframework.io/v2: {}
1010
scorecard.sdk.operatorframework.io/v2: {}
1111
projectName: func-operator
12-
repo: github.com/creydr/func-operator
12+
repo: github.com/functions-dev/func-operator
1313
resources:
1414
- api:
1515
crdVersion: v1
1616
namespaced: true
1717
controller: true
1818
domain: functions.dev
1919
kind: Function
20-
path: github.com/creydr/func-operator/api/v1alpha1
20+
path: github.com/functions-dev/func-operator/api/v1alpha1
2121
version: v1alpha1
2222
version: "3"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Deploy the operator to your cluster:
1717

1818
```bash
1919
# Deploy the operator
20-
make deploy IMG=ghcr.io/creydr/func-operator:latest
20+
make deploy IMG=ghcr.io/functions-dev/func-operator:latest
2121
```
2222

2323
**⚠️ Hint**: We don't have any major release yet, therefore the `latest` tag reflects the changes from the `main` branch.
@@ -26,7 +26,7 @@ Or use the pre-built installer:
2626

2727
```bash
2828
# Generate installer manifests
29-
make build-installer IMG=ghcr.io/creydr/func-operator:latest
29+
make build-installer IMG=ghcr.io/functions-dev/func-operator:latest
3030

3131
# Apply the installer
3232
kubectl apply -f dist/install.yaml

cmd/main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
"path/filepath"
2525
"time"
2626

27-
"github.com/creydr/func-operator/internal/git"
28-
"github.com/creydr/func-operator/internal/monitoring"
27+
"github.com/functions-dev/func-operator/internal/git"
28+
"github.com/functions-dev/func-operator/internal/monitoring"
2929

3030
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
3131
// to ensure that exec-entrypoint and run can make use of them.
@@ -42,9 +42,9 @@ import (
4242
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
4343
"sigs.k8s.io/controller-runtime/pkg/webhook"
4444

45-
functionsdevv1alpha1 "github.com/creydr/func-operator/api/v1alpha1"
46-
"github.com/creydr/func-operator/internal/controller"
47-
"github.com/creydr/func-operator/internal/funccli"
45+
functionsdevv1alpha1 "github.com/functions-dev/func-operator/api/v1alpha1"
46+
"github.com/functions-dev/func-operator/internal/controller"
47+
"github.com/functions-dev/func-operator/internal/funccli"
4848
// +kubebuilder:scaffold:imports
4949
)
5050

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/creydr/func-operator
1+
module github.com/functions-dev/func-operator
22

33
go 1.25.0
44

internal/controller/function_controller.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222
"os"
2323
"strings"
2424

25-
"github.com/creydr/func-operator/internal/funccli"
26-
fn "github.com/creydr/func-operator/internal/function"
27-
"github.com/creydr/func-operator/internal/git"
25+
"github.com/functions-dev/func-operator/internal/funccli"
26+
fn "github.com/functions-dev/func-operator/internal/function"
27+
"github.com/functions-dev/func-operator/internal/git"
2828
v1 "k8s.io/api/core/v1"
2929
"k8s.io/apimachinery/pkg/api/equality"
3030
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -40,7 +40,7 @@ import (
4040
"sigs.k8s.io/controller-runtime/pkg/log"
4141
"sigs.k8s.io/controller-runtime/pkg/predicate"
4242

43-
"github.com/creydr/func-operator/api/v1alpha1"
43+
"github.com/functions-dev/func-operator/api/v1alpha1"
4444
rbacv1 "k8s.io/api/rbac/v1"
4545
apierrors "k8s.io/apimachinery/pkg/api/errors"
4646
)

internal/controller/function_controller_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"os"
2222
"path/filepath"
2323

24-
"github.com/creydr/func-operator/internal/funccli"
25-
"github.com/creydr/func-operator/internal/git"
24+
"github.com/functions-dev/func-operator/internal/funccli"
25+
"github.com/functions-dev/func-operator/internal/git"
2626
. "github.com/onsi/ginkgo/v2"
2727
. "github.com/onsi/gomega"
2828
"github.com/stretchr/testify/mock"
@@ -35,7 +35,7 @@ import (
3535
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
3636
"sigs.k8s.io/controller-runtime/pkg/reconcile"
3737

38-
functionsdevv1alpha1 "github.com/creydr/func-operator/api/v1alpha1"
38+
functionsdevv1alpha1 "github.com/functions-dev/func-operator/api/v1alpha1"
3939
)
4040

4141
var _ = Describe("Function Controller", func() {

internal/controller/suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
logf "sigs.k8s.io/controller-runtime/pkg/log"
3333
"sigs.k8s.io/controller-runtime/pkg/log/zap"
3434

35-
functionsdevv1alpha1 "github.com/creydr/func-operator/api/v1alpha1"
35+
functionsdevv1alpha1 "github.com/functions-dev/func-operator/api/v1alpha1"
3636
// +kubebuilder:scaffold:imports
3737
)
3838

internal/funccli/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"sync"
1515
"time"
1616

17-
"github.com/creydr/func-operator/internal/monitoring"
17+
"github.com/functions-dev/func-operator/internal/monitoring"
1818
"github.com/go-logr/logr"
1919
"github.com/prometheus/client_golang/prometheus"
2020
funcfn "knative.dev/func/pkg/functions"

internal/git/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/creydr/func-operator/internal/monitoring"
10+
"github.com/functions-dev/func-operator/internal/monitoring"
1111
"github.com/go-git/go-git/v6"
1212
"github.com/go-git/go-git/v6/plumbing"
1313
"github.com/go-git/go-git/v6/plumbing/transport"

0 commit comments

Comments
 (0)