Skip to content

Commit 3797748

Browse files
Update catalogd API v1 imports
Signed-off-by: Lalatendu Mohanty <[email protected]>
1 parent b67bd38 commit 3797748

File tree

14 files changed

+13
-13
lines changed

14 files changed

+13
-13
lines changed

catalogd/bin/linux/manager

47 MB
Binary file not shown.

cmd/manager/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ import (
4646
"sigs.k8s.io/controller-runtime/pkg/healthz"
4747
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
4848

49-
catalogd "github.com/operator-framework/catalogd/api/v1"
49+
catalogd "github.com/operator-framework/operator-controller/catalogd/api/v1"
5050
helmclient "github.com/operator-framework/helm-operator-plugins/pkg/client"
5151

5252
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
)

0 commit comments

Comments
 (0)