Skip to content

Commit 58bbba7

Browse files
committed
transfer: replace openshift with red-hat-storage
Signed-off-by: Jose A. Rivera <[email protected]>
1 parent e871f89 commit 58bbba7

File tree

90 files changed

+148
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+148
-148
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ contribute to the project.
88

99
Developers must follow these steps to make a change:
1010

11-
1. Fork the `openshift/ocs-operator` repository on GitHub.
11+
1. Fork the `red-hat-storage/ocs-operator` repository on GitHub.
1212
2. Create a branch from the master branch, or from a versioned branch (such
1313
as `release-4.2`) if you are proposing a backport.
1414
3. Make changes.
1515
4. Create tests as needed and ensure that all tests pass.
1616
5. Ensure your commit messages include sign-off.
1717
6. Push your changes to a branch in your fork of the repository.
18-
7. Submit a pull request to the `openshift/ocs-operator` repository.
18+
7. Submit a pull request to the `red-hat-storage/ocs-operator` repository.
1919
8. Work with the community to make any necessary changes through the code
2020
review process (effectively repeating steps 3-8 as needed).
2121

PROJECT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
domain: openshift.io
22
layout: go.kubebuilder.io/v2
33
projectName: ocs-operator
4-
repo: github.com/openshift/ocs-operator
4+
repo: github.com/red-hat-storage/ocs-operator
55
resources:
66
- group: ocs
77
kind: OCSInitialization

build/Dockerfile.build

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# ubi8/go-toolset only supports up to Go v1.15 (20 Aug 2021)
33
FROM golang:1.16 as builder
44

5-
WORKDIR /go/src/github.com/openshift/ocs-operator
5+
WORKDIR /go/src/github.com/red-hat-storage/ocs-operator
66
COPY . .
77
USER root
88
RUN make build-go
99

1010
FROM registry.access.redhat.com/ubi8/ubi-minimal
1111

12-
COPY --from=builder /go/src/github.com/openshift/ocs-operator/build/_output/bin/ocs-operator /usr/local/bin/ocs-operator
13-
COPY --from=builder /go/src/github.com/openshift/ocs-operator/build/_output/bin/metrics-exporter /usr/local/bin/metrics-exporter
14-
COPY --from=builder /go/src/github.com/openshift/ocs-operator/metrics/deploy/*rules*.yaml /ocs-prometheus-rules/
12+
COPY --from=builder /go/src/github.com/red-hat-storage/ocs-operator/build/_output/bin/ocs-operator /usr/local/bin/ocs-operator
13+
COPY --from=builder /go/src/github.com/red-hat-storage/ocs-operator/build/_output/bin/metrics-exporter /usr/local/bin/metrics-exporter
14+
COPY --from=builder /go/src/github.com/red-hat-storage/ocs-operator/metrics/deploy/*rules*.yaml /ocs-prometheus-rules/

controllers/ocsinitialization/ocsinitialization_controller.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88

99
"github.com/go-logr/logr"
1010
secv1client "github.com/openshift/client-go/security/clientset/versioned/typed/security/v1"
11-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
12-
"github.com/openshift/ocs-operator/controllers/defaults"
13-
"github.com/openshift/ocs-operator/controllers/util"
11+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
12+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
13+
"github.com/red-hat-storage/ocs-operator/controllers/util"
1414
appsv1 "k8s.io/api/apps/v1"
1515
corev1 "k8s.io/api/core/v1"
1616
"k8s.io/apimachinery/pkg/api/errors"

controllers/ocsinitialization/ocsinitialization_controller_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
secv1 "github.com/openshift/api/security/v1"
99
fakeSecClient "github.com/openshift/client-go/security/clientset/versioned/typed/security/v1/fake"
1010
conditionsv1 "github.com/openshift/custom-resource-status/conditions/v1"
11-
v1 "github.com/openshift/ocs-operator/api/v1"
12-
statusutil "github.com/openshift/ocs-operator/controllers/util"
11+
v1 "github.com/red-hat-storage/ocs-operator/api/v1"
12+
statusutil "github.com/red-hat-storage/ocs-operator/controllers/util"
1313
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
1414
"github.com/stretchr/testify/assert"
1515
appsv1 "k8s.io/api/apps/v1"

controllers/ocsinitialization/sccs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66

77
secv1 "github.com/openshift/api/security/v1"
8-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
99
corev1 "k8s.io/api/core/v1"
1010
"k8s.io/apimachinery/pkg/api/errors"
1111
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/persistentvolume/persistentvolume_controller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package persistentvolume
33
import (
44
"strings"
55

6-
"github.com/openshift/ocs-operator/controllers/util"
6+
"github.com/red-hat-storage/ocs-operator/controllers/util"
77

88
"github.com/go-logr/logr"
99
corev1 "k8s.io/api/core/v1"

controllers/persistentvolume/reconcile_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
api "github.com/openshift/ocs-operator/api/v1"
7+
api "github.com/red-hat-storage/ocs-operator/api/v1"
88

99
"github.com/stretchr/testify/assert"
1010
corev1 "k8s.io/api/core/v1"

controllers/storagecluster/cephblockpools.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
7+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
88
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
99
"k8s.io/apimachinery/pkg/api/errors"
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephblockpools_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"sigs.k8s.io/controller-runtime/pkg/client"
1515
"sigs.k8s.io/controller-runtime/pkg/reconcile"
1616

17-
api "github.com/openshift/ocs-operator/api/v1"
17+
api "github.com/red-hat-storage/ocs-operator/api/v1"
1818
)
1919

2020
var (

controllers/storagecluster/cephcluster.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"github.com/go-logr/logr"
1212
v1 "github.com/openshift/api/config/v1"
1313
objectreferencesv1 "github.com/openshift/custom-resource-status/objectreferences/v1"
14-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
15-
"github.com/openshift/ocs-operator/controllers/defaults"
16-
statusutil "github.com/openshift/ocs-operator/controllers/util"
14+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
15+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
16+
statusutil "github.com/red-hat-storage/ocs-operator/controllers/util"
1717
rookCephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1818
corev1 "k8s.io/api/core/v1"
1919
storagev1 "k8s.io/api/storage/v1"

controllers/storagecluster/cephcluster_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import (
99
nbv1 "github.com/noobaa/noobaa-operator/v2/pkg/apis/noobaa/v1alpha1"
1010
v1 "github.com/openshift/api/config/v1"
1111
conditionsv1 "github.com/openshift/custom-resource-status/conditions/v1"
12-
api "github.com/openshift/ocs-operator/api/v1"
13-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
14-
"github.com/openshift/ocs-operator/controllers/defaults"
15-
ocsutil "github.com/openshift/ocs-operator/controllers/util"
12+
api "github.com/red-hat-storage/ocs-operator/api/v1"
13+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
14+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
15+
ocsutil "github.com/red-hat-storage/ocs-operator/controllers/util"
1616
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1717
"gotest.tools/v3/assert"
1818
is "gotest.tools/v3/assert/cmp"

controllers/storagecluster/cephconfig.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88

99
configv1 "github.com/openshift/api/config/v1"
10-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
10+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
1111
ini "gopkg.in/ini.v1"
1212
corev1 "k8s.io/api/core/v1"
1313
"k8s.io/apimachinery/pkg/api/errors"

controllers/storagecluster/cephconfig_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
configv1 "github.com/openshift/api/config/v1"
8-
api "github.com/openshift/ocs-operator/api/v1"
8+
api "github.com/red-hat-storage/ocs-operator/api/v1"
99
rookCephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1010
ini "gopkg.in/ini.v1"
1111
"gotest.tools/v3/assert"

controllers/storagecluster/cephfilesystem.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"fmt"
66

7-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8-
"github.com/openshift/ocs-operator/controllers/defaults"
7+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
8+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
99
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1010
"k8s.io/apimachinery/pkg/api/errors"
1111
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephfilesystem_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sigs.k8s.io/controller-runtime/pkg/client"
1111
"sigs.k8s.io/controller-runtime/pkg/reconcile"
1212

13-
api "github.com/openshift/ocs-operator/api/v1"
13+
api "github.com/red-hat-storage/ocs-operator/api/v1"
1414
)
1515

1616
func TestCephFileSystem(t *testing.T) {

controllers/storagecluster/cephobjectstores.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"fmt"
66

7-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8-
"github.com/openshift/ocs-operator/controllers/defaults"
7+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
8+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
99
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1010
"k8s.io/apimachinery/pkg/api/errors"
1111
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephobjectstores_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
api "github.com/openshift/ocs-operator/api/v1"
7+
api "github.com/red-hat-storage/ocs-operator/api/v1"
88
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
99
"github.com/stretchr/testify/assert"
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephobjectstoreusers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
7+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
88
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
99
"k8s.io/apimachinery/pkg/api/errors"
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephobjectstoreusers_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
api "github.com/openshift/ocs-operator/api/v1"
7+
api "github.com/red-hat-storage/ocs-operator/api/v1"
88
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
99
"github.com/stretchr/testify/assert"
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephrbdmirrors.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"fmt"
66

7-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8-
"github.com/openshift/ocs-operator/controllers/defaults"
7+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
8+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
99
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1010
"k8s.io/apimachinery/pkg/api/errors"
1111
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/cephrbdmirrors_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"k8s.io/apimachinery/pkg/types"
1111
"sigs.k8s.io/controller-runtime/pkg/reconcile"
1212

13-
api "github.com/openshift/ocs-operator/api/v1"
13+
api "github.com/red-hat-storage/ocs-operator/api/v1"
1414
)
1515

1616
func TestCephRbdMirror(t *testing.T) {

controllers/storagecluster/exporter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66

77
"github.com/imdario/mergo"
8-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
99
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
1010
corev1 "k8s.io/api/core/v1"
1111
apierrors "k8s.io/apimachinery/pkg/api/errors"

controllers/storagecluster/external_resources.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"time"
1414

1515
"github.com/go-logr/logr"
16-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
16+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
1717
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1818
corev1 "k8s.io/api/core/v1"
1919
"k8s.io/apimachinery/pkg/api/errors"

controllers/storagecluster/external_resources_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"time"
1212

1313
nbv1 "github.com/noobaa/noobaa-operator/v2/pkg/apis/noobaa/v1alpha1"
14-
api "github.com/openshift/ocs-operator/api/v1"
15-
"github.com/openshift/ocs-operator/controllers/defaults"
14+
api "github.com/red-hat-storage/ocs-operator/api/v1"
15+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
1616
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1717
"github.com/stretchr/testify/assert"
1818
corev1 "k8s.io/api/core/v1"

controllers/storagecluster/generate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package storagecluster
33
import (
44
"fmt"
55

6-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
6+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
77
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
88
)
99

controllers/storagecluster/initialization_reconciler_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
nbv1 "github.com/noobaa/noobaa-operator/v2/pkg/apis/noobaa/v1alpha1"
1010
configv1 "github.com/openshift/api/config/v1"
1111
routev1 "github.com/openshift/api/route/v1"
12-
api "github.com/openshift/ocs-operator/api/v1"
13-
"github.com/openshift/ocs-operator/controllers/util"
12+
api "github.com/red-hat-storage/ocs-operator/api/v1"
13+
"github.com/red-hat-storage/ocs-operator/controllers/util"
1414
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1515
"github.com/stretchr/testify/assert"
1616
appsv1 "k8s.io/api/apps/v1"

controllers/storagecluster/job_templates.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77

88
openshiftv1 "github.com/openshift/api/template/v1"
9-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
9+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
1010
batchv1 "k8s.io/api/batch/v1"
1111
corev1 "k8s.io/api/core/v1"
1212
"k8s.io/apimachinery/pkg/api/errors"

controllers/storagecluster/job_templates_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
openshiftv1 "github.com/openshift/api/template/v1"
8-
api "github.com/openshift/ocs-operator/api/v1"
8+
api "github.com/red-hat-storage/ocs-operator/api/v1"
99
"github.com/stretchr/testify/assert"
1010
batchv1 "k8s.io/api/batch/v1"
1111
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/kms_resources.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
99
corev1 "k8s.io/api/core/v1"
1010
"k8s.io/klog/v2"
1111

controllers/storagecluster/noobaa_system_reconciler.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66

77
nbv1 "github.com/noobaa/noobaa-operator/v2/pkg/apis/noobaa/v1alpha1"
88
objectreferencesv1 "github.com/openshift/custom-resource-status/objectreferences/v1"
9-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
10-
"github.com/openshift/ocs-operator/controllers/defaults"
11-
statusutil "github.com/openshift/ocs-operator/controllers/util"
9+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
10+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
11+
statusutil "github.com/red-hat-storage/ocs-operator/controllers/util"
1212
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1313
corev1 "k8s.io/api/core/v1"
1414
"k8s.io/apimachinery/pkg/api/errors"

controllers/storagecluster/noobaa_system_reconciler_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/noobaa/noobaa-operator/v2/pkg/apis/noobaa/v1alpha1"
1010
nbv1 "github.com/noobaa/noobaa-operator/v2/pkg/apis/noobaa/v1alpha1"
11-
v1 "github.com/openshift/ocs-operator/api/v1"
11+
v1 "github.com/red-hat-storage/ocs-operator/api/v1"
1212
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1313
"github.com/stretchr/testify/assert"
1414
corev1 "k8s.io/api/core/v1"

controllers/storagecluster/placement.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package storagecluster
22

33
import (
4-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
5-
"github.com/openshift/ocs-operator/controllers/defaults"
4+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
5+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
66
rookCephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
77
rookv1 "github.com/rook/rook/pkg/apis/rook.io"
88

controllers/storagecluster/placement_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package storagecluster
33
import (
44
"testing"
55

6-
api "github.com/openshift/ocs-operator/api/v1"
7-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8-
"github.com/openshift/ocs-operator/controllers/defaults"
6+
api "github.com/red-hat-storage/ocs-operator/api/v1"
7+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
8+
"github.com/red-hat-storage/ocs-operator/controllers/defaults"
99
rookCephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
1010
rookCore "github.com/rook/rook/pkg/apis/rook.io"
1111

controllers/storagecluster/platform_detection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77

88
configv1 "github.com/openshift/api/config/v1"
9-
"github.com/openshift/ocs-operator/controllers/util"
9+
"github.com/red-hat-storage/ocs-operator/controllers/util"
1010
corev1 "k8s.io/api/core/v1"
1111
"k8s.io/apimachinery/pkg/api/errors"
1212
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/prometheus.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"path/filepath"
1010

1111
"github.com/imdario/mergo"
12-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
12+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
1313
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
1414
apierrors "k8s.io/apimachinery/pkg/api/errors"
1515
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

controllers/storagecluster/reconcile.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"github.com/blang/semver"
1111
"github.com/go-logr/logr"
1212
conditionsv1 "github.com/openshift/custom-resource-status/conditions/v1"
13-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
14-
statusutil "github.com/openshift/ocs-operator/controllers/util"
15-
"github.com/openshift/ocs-operator/version"
13+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
14+
statusutil "github.com/red-hat-storage/ocs-operator/controllers/util"
15+
"github.com/red-hat-storage/ocs-operator/version"
1616
"github.com/operator-framework/operator-lib/conditions"
1717
corev1 "k8s.io/api/core/v1"
1818
"k8s.io/apimachinery/pkg/api/errors"

controllers/storagecluster/routes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66

77
routev1 "github.com/openshift/api/route/v1"
8-
ocsv1 "github.com/openshift/ocs-operator/api/v1"
8+
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v1"
99
"k8s.io/apimachinery/pkg/api/errors"
1010
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1111
"k8s.io/apimachinery/pkg/types"

0 commit comments

Comments
 (0)