Skip to content

Commit 02f571b

Browse files
Update catalogd API v1 imports
Signed-off-by: Camila Macedo <[email protected]>
1 parent 5b5ccab commit 02f571b

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

cmd/manager/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import (
4949
"sigs.k8s.io/controller-runtime/pkg/metrics/filters"
5050
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
5151

52-
catalogd "github.com/operator-framework/catalogd/api/v1"
52+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
5353
helmclient "github.com/operator-framework/helm-operator-plugins/pkg/client"
5454

5555
ocv1 "github.com/operator-framework/operator-controller/api/v1"

internal/catalogmetadata/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"k8s.io/apimachinery/pkg/api/meta"
1313
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1414

15-
catalogd "github.com/operator-framework/catalogd/api/v1"
15+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
1616
"github.com/operator-framework/operator-registry/alpha/declcfg"
1717
)
1818

internal/catalogmetadata/client/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/stretchr/testify/require"
1515
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1616

17-
catalogd "github.com/operator-framework/catalogd/api/v1"
17+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
1818
"github.com/operator-framework/operator-registry/alpha/declcfg"
1919

2020
catalogClient "github.com/operator-framework/operator-controller/internal/catalogmetadata/client"

internal/controllers/clustercatalog_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"sigs.k8s.io/controller-runtime/pkg/client"
2727
"sigs.k8s.io/controller-runtime/pkg/log"
2828

29-
catalogd "github.com/operator-framework/catalogd/api/v1"
29+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
3030
)
3131

3232
type CatalogCache interface {

internal/controllers/clustercatalog_controller_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
ctrl "sigs.k8s.io/controller-runtime"
1515
"sigs.k8s.io/controller-runtime/pkg/client/fake"
1616

17-
catalogd "github.com/operator-framework/catalogd/api/v1"
17+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
1818

1919
"github.com/operator-framework/operator-controller/internal/controllers"
2020
"github.com/operator-framework/operator-controller/internal/scheme"

internal/controllers/clusterextension_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import (
4545
"sigs.k8s.io/controller-runtime/pkg/reconcile"
4646

4747
"github.com/operator-framework/api/pkg/operators/v1alpha1"
48-
catalogd "github.com/operator-framework/catalogd/api/v1"
48+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
4949
helmclient "github.com/operator-framework/helm-operator-plugins/pkg/client"
5050
"github.com/operator-framework/operator-registry/alpha/declcfg"
5151

internal/resolve/catalog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"sigs.k8s.io/controller-runtime/pkg/client"
1616
"sigs.k8s.io/controller-runtime/pkg/log"
1717

18-
catalogd "github.com/operator-framework/catalogd/api/v1"
18+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
1919
"github.com/operator-framework/operator-registry/alpha/declcfg"
2020

2121
ocv1 "github.com/operator-framework/operator-controller/api/v1"

internal/resolve/catalog_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"k8s.io/utils/ptr"
1717
"sigs.k8s.io/controller-runtime/pkg/client"
1818

19-
catalogd "github.com/operator-framework/catalogd/api/v1"
19+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
2020
"github.com/operator-framework/operator-registry/alpha/declcfg"
2121
"github.com/operator-framework/operator-registry/alpha/property"
2222

internal/scheme/scheme.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
88
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
99

10-
catalogd "github.com/operator-framework/catalogd/api/v1"
10+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
1111

1212
ocv1 "github.com/operator-framework/operator-controller/api/v1"
1313
)

test/e2e/cluster_extension_install_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"k8s.io/utils/env"
2929
"sigs.k8s.io/controller-runtime/pkg/client"
3030

31-
catalogd "github.com/operator-framework/catalogd/api/v1"
31+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
3232

3333
ocv1 "github.com/operator-framework/operator-controller/api/v1"
3434
)

0 commit comments

Comments
 (0)