Skip to content

Commit 8541e83

Browse files
jlebonalicefr
authored andcommitted
tree: adapt for repo move from jlebon to bootc-dev
Update the Go module path, all import paths, container image references, and the install URL in README.md to reflect the repo move from github.com/jlebon/bootc-operator to github.com/bootc-dev/bootc-operator. Assisted-by: Pi (Claude Opus 4.6) Signed-off-by: Jonathan Lebon <jonathan@jlebon.com>
1 parent 8133c7d commit 8541e83

21 files changed

Lines changed: 36 additions & 36 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sysexts, etc. See the [PRD](docs/PRD.md) for more details.
4747
Deploy from the kustomize config:
4848

4949
```shell
50-
kubectl apply -k https://github.com/jlebon/bootc-operator//config/default
50+
kubectl apply -k https://github.com/bootc-dev/bootc-operator//config/default
5151
```
5252

5353
This creates the `bootc-operator` namespace and deploys the controller and

cmd/controller/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"sigs.k8s.io/controller-runtime/pkg/healthz"
1515
"sigs.k8s.io/controller-runtime/pkg/log/zap"
1616

17-
bootcv1alpha1 "github.com/jlebon/bootc-operator/api/v1alpha1"
18-
"github.com/jlebon/bootc-operator/internal/controller"
17+
bootcv1alpha1 "github.com/bootc-dev/bootc-operator/api/v1alpha1"
18+
"github.com/bootc-dev/bootc-operator/internal/controller"
1919
)
2020

2121
var (

cmd/daemon/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import (
1616
"sigs.k8s.io/controller-runtime/pkg/client"
1717
"sigs.k8s.io/controller-runtime/pkg/log/zap"
1818

19-
bootcv1alpha1 "github.com/jlebon/bootc-operator/api/v1alpha1"
20-
"github.com/jlebon/bootc-operator/internal/bootc"
21-
"github.com/jlebon/bootc-operator/internal/daemon"
19+
bootcv1alpha1 "github.com/bootc-dev/bootc-operator/api/v1alpha1"
20+
"github.com/bootc-dev/bootc-operator/internal/bootc"
21+
"github.com/bootc-dev/bootc-operator/internal/daemon"
2222
)
2323

2424
var (

config/daemon/daemon.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
- name: daemon
2626
command:
2727
- daemon
28-
image: ghcr.io/jlebon/bootc-operator:latest
28+
image: ghcr.io/bootc-dev/bootc-operator:latest
2929
env:
3030
- name: NODE_NAME
3131
valueFrom:

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ spec:
7070
args:
7171
- --leader-elect
7272
- --health-probe-bind-address=:8081
73-
image: ghcr.io/jlebon/bootc-operator:latest
73+
image: ghcr.io/bootc-dev/bootc-operator:latest
7474
name: manager
7575
ports:
7676
- containerPort: 8081

go.mod

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

33
go 1.26.0
44

internal/controller/bootcnodepool_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"sigs.k8s.io/controller-runtime/pkg/reconcile"
3535
"sigs.k8s.io/controller-runtime/pkg/source"
3636

37-
bootcv1alpha1 "github.com/jlebon/bootc-operator/api/v1alpha1"
37+
bootcv1alpha1 "github.com/bootc-dev/bootc-operator/api/v1alpha1"
3838
)
3939

4040
// drainStatus tracks an in-progress drain goroutine for a single node.

internal/controller/crd_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1313
"sigs.k8s.io/controller-runtime/pkg/client"
1414

15-
bootcv1alpha1 "github.com/jlebon/bootc-operator/api/v1alpha1"
16-
testutil "github.com/jlebon/bootc-operator/test/util"
15+
bootcv1alpha1 "github.com/bootc-dev/bootc-operator/api/v1alpha1"
16+
testutil "github.com/bootc-dev/bootc-operator/test/util"
1717
)
1818

1919
const (

internal/controller/membership_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1515
"sigs.k8s.io/controller-runtime/pkg/client"
1616

17-
bootcv1alpha1 "github.com/jlebon/bootc-operator/api/v1alpha1"
18-
testutil "github.com/jlebon/bootc-operator/test/util"
17+
bootcv1alpha1 "github.com/bootc-dev/bootc-operator/api/v1alpha1"
18+
testutil "github.com/bootc-dev/bootc-operator/test/util"
1919
)
2020

2121
// pollInterval and pollTimeout control how long tests wait for the

internal/controller/rollout.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"sigs.k8s.io/controller-runtime/pkg/event"
2222
logf "sigs.k8s.io/controller-runtime/pkg/log"
2323

24-
bootcv1alpha1 "github.com/jlebon/bootc-operator/api/v1alpha1"
24+
bootcv1alpha1 "github.com/bootc-dev/bootc-operator/api/v1alpha1"
2525
)
2626

2727
// rolloutState holds the classified BootcNodes for a single reconcile

0 commit comments

Comments
 (0)