Skip to content

Commit 901c6b2

Browse files
authored
Merge pull request #6 from openstack-k8s-operators/migrate-repo-references
Update module path for repo migration
2 parents 06cef90 + 0cf7a82 commit 901c6b2

26 files changed

Lines changed: 33 additions & 50 deletions

PROJECT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins:
1010
scorecard.sdk.operatorframework.io/v2: {}
1111
sdk.x-openshift.io/v1: {}
1212
projectName: openstack-lightspeed-operator
13-
repo: github.com/openstack-lightspeed/operator
13+
repo: github.com/openstack-k8s-operators/lightspeed-operator
1414
resources:
1515
- api:
1616
crdVersion: v1
@@ -19,6 +19,6 @@ resources:
1919
domain: openstack.org
2020
group: lightspeed
2121
kind: OpenStackLightspeed
22-
path: github.com/openstack-lightspeed/operator/api/v1beta1
22+
path: github.com/openstack-k8s-operators/lightspeed-operator/api/v1beta1
2323
version: v1beta1
2424
version: "3"

README.md

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ cd ../..
4242
Get the operator repository:
4343

4444
```bash
45-
git clone https://github.com/openstack-lightspeed/operator.git
46-
cd operator
45+
git clone https://github.com/openstack-k8s-operators/lightspeed-operator.git
46+
cd lightspeed-operator
4747
```
4848

4949
First, deploy OpenStack Lightspeed Operator:
@@ -185,23 +185,6 @@ Use this for quick development and testing.
185185
*Attention*: In this mode RBACs are ignored, so when changing those please run
186186
the operator in the OpenShift cluster with an image.
187187

188-
## Quickstart
189-
190-
### Run OpenShift Cluster
191-
192-
We'll use CRC and deploy it using the development tools from `install_yamls`.
193-
194-
Get install-yamls:
195-
```bash
196-
git clone https://github.com/openstack-k8s-operators/install_yamls.git
197-
cd install_yamls/devsetup
198-
make download_tools
199-
```
200-
201-
Get pull credentials (pull secret) from `https://cloud.redhat.com/openshift/create/local`
202-
and save it in `pull-secret.txt` of the current path, or you can save it anywhere
203-
and use the `PULL_SECRET` env var to point to it like in the next example.
204-
205188
## Development
206189

207190
### Running Pre-Commit Hooks

bundle/manifests/openstack-lightspeed-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ metadata:
4040
operatorframework.io/suggested-namespace: openstack-lightspeed
4141
operators.operatorframework.io/builder: operator-sdk-v1.38.0
4242
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
43-
repository: https://github.com/openstack-lightspeed/operator
43+
repository: https://github.com/openstack-k8s-operators/lightspeed-operator
4444
name: openstack-lightspeed-operator.v0.0.1
4545
namespace: openstack-lightspeed
4646
spec:
@@ -472,7 +472,7 @@ spec:
472472
- llm
473473
links:
474474
- name: OpenStack Lightspeed Operator
475-
url: https://github.com/openstack-lightspeed/operator
475+
url: https://github.com/openstack-k8s-operators/lightspeed-operator
476476
maintainers:
477477
- email: lmartins@redhat.com
478478
name: Lucas Alvares Gomes
@@ -484,7 +484,7 @@ spec:
484484
minKubeVersion: 1.31.0
485485
provider:
486486
name: Red Hat
487-
url: https://github.com/openstack-lightspeed/operator
487+
url: https://github.com/openstack-k8s-operators/lightspeed-operator
488488
relatedImages:
489489
- image: quay.io/openstack-lightspeed/rag-content:os-docs-2026.1-ogx
490490
name: openstack-lightspeed-image-url-default

cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ import (
4242
openshiftv1 "github.com/openshift/api/operator/v1"
4343
operatorsv1alpha1 "github.com/operator-framework/api/pkg/operators/v1alpha1"
4444

45-
apiv1beta1 "github.com/openstack-lightspeed/operator/api/v1beta1"
46-
"github.com/openstack-lightspeed/operator/internal/controller"
45+
apiv1beta1 "github.com/openstack-k8s-operators/lightspeed-operator/api/v1beta1"
46+
"github.com/openstack-k8s-operators/lightspeed-operator/internal/controller"
4747
// +kubebuilder:scaffold:imports
4848
)
4949

config/manifests/bases/openstack-lightspeed-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
features.operators.openshift.io/token-auth-azure: "false"
1818
features.operators.openshift.io/token-auth-gcp: "false"
1919
operatorframework.io/suggested-namespace: openstack-lightspeed
20-
repository: https://github.com/openstack-lightspeed/operator
20+
repository: https://github.com/openstack-k8s-operators/lightspeed-operator
2121
name: openstack-lightspeed-operator.v0.0.0
2222
namespace: openstack-lightspeed
2323
spec:
@@ -155,7 +155,7 @@ spec:
155155
- llm
156156
links:
157157
- name: OpenStack Lightspeed Operator
158-
url: https://github.com/openstack-lightspeed/operator
158+
url: https://github.com/openstack-k8s-operators/lightspeed-operator
159159
maintainers:
160160
- email: lmartins@redhat.com
161161
name: Lucas Alvares Gomes
@@ -167,7 +167,7 @@ spec:
167167
minKubeVersion: 1.31.0
168168
provider:
169169
name: Red Hat
170-
url: https://github.com/openstack-lightspeed/operator
170+
url: https://github.com/openstack-k8s-operators/lightspeed-operator
171171
relatedImages:
172172
- image: quay.io/openstack-lightspeed/operator:latest
173173
name: operator

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/openstack-lightspeed/operator
1+
module github.com/openstack-k8s-operators/lightspeed-operator
22

33
go 1.24.6
44

internal/controller/ca_bundle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"time"
2828

2929
common_helper "github.com/openstack-k8s-operators/lib-common/modules/common/helper"
30-
apiv1beta1 "github.com/openstack-lightspeed/operator/api/v1beta1"
30+
apiv1beta1 "github.com/openstack-k8s-operators/lightspeed-operator/api/v1beta1"
3131
corev1 "k8s.io/api/core/v1"
3232
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
3333
"sigs.k8s.io/controller-runtime/pkg/client"

internal/controller/ca_bundle_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
"time"
3535

3636
common_helper "github.com/openstack-k8s-operators/lib-common/modules/common/helper"
37-
apiv1beta1 "github.com/openstack-lightspeed/operator/api/v1beta1"
37+
apiv1beta1 "github.com/openstack-k8s-operators/lightspeed-operator/api/v1beta1"
3838
corev1 "k8s.io/api/core/v1"
3939
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
4040
"k8s.io/apimachinery/pkg/runtime"

internal/controller/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"strings"
2727

2828
common_helper "github.com/openstack-k8s-operators/lib-common/modules/common/helper"
29-
apiv1beta1 "github.com/openstack-lightspeed/operator/api/v1beta1"
29+
apiv1beta1 "github.com/openstack-k8s-operators/lightspeed-operator/api/v1beta1"
3030
appsv1 "k8s.io/api/apps/v1"
3131
corev1 "k8s.io/api/core/v1"
3232
k8s_errors "k8s.io/apimachinery/pkg/api/errors"

internal/controller/console_reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
consolev1 "github.com/openshift/api/console/v1"
2828
openshiftv1 "github.com/openshift/api/operator/v1"
2929
common_helper "github.com/openstack-k8s-operators/lib-common/modules/common/helper"
30-
apiv1beta1 "github.com/openstack-lightspeed/operator/api/v1beta1"
30+
apiv1beta1 "github.com/openstack-k8s-operators/lightspeed-operator/api/v1beta1"
3131
corev1 "k8s.io/api/core/v1"
3232
networkingv1 "k8s.io/api/networking/v1"
3333
"k8s.io/apimachinery/pkg/api/errors"

0 commit comments

Comments
 (0)