Skip to content

Commit 0eec6e1

Browse files
authored
moving package imports to current project name (#10)
Signed-off-by: Ken Sipe <[email protected]>
1 parent e3160b0 commit 0eec6e1

15 files changed

+27
-27
lines changed

go.mod

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

33
go 1.13
44

internal/cmd/catalog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
6+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
77
)
88

99
func newCatalogCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/catalog_add.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"github.com/sirupsen/logrus"
99
"github.com/spf13/cobra"
1010

11-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
12-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
11+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
12+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
1313
)
1414

1515
func newCatalogAddCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/catalog_list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
v1 "k8s.io/api/core/v1"
1111
"k8s.io/apimachinery/pkg/util/duration"
1212

13-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
14-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
13+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
14+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
1515
)
1616

1717
func newCatalogListCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/catalog_remove.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
7-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
6+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
7+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
88
)
99

1010
func newCatalogRemoveCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/operator_install.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"github.com/spf13/cobra"
77

8-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
9-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
8+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
9+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
1010
)
1111

1212
func newOperatorInstallCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/operator_list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
v1 "k8s.io/api/core/v1"
1313
"k8s.io/apimachinery/pkg/util/duration"
1414

15-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
16-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
15+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
16+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
1717
)
1818

1919
func newOperatorListCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/operator_list_available.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
v1 "k8s.io/api/core/v1"
1313
"k8s.io/apimachinery/pkg/util/duration"
1414

15-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
16-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
15+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
16+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
1717
)
1818

1919
func newOperatorListAvailableCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/operator_uninstall.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
7-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
6+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
7+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
88
)
99

1010
func newOperatorUninstallCmd(cfg *action.Configuration) *cobra.Command {

internal/cmd/operator_upgrade.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"github.com/spf13/cobra"
77

8-
"github.com/joelanford/kubectl-operator/internal/pkg/action"
9-
"github.com/joelanford/kubectl-operator/internal/pkg/log"
8+
"github.com/operator-framework/kubectl-operator/internal/pkg/action"
9+
"github.com/operator-framework/kubectl-operator/internal/pkg/log"
1010
)
1111

1212
func newOperatorUpgradeCmd(cfg *action.Configuration) *cobra.Command {

0 commit comments

Comments
 (0)