Skip to content

Commit 5c06520

Browse files
committed
Refactor alpha/experimental references for olmv1
1 parent d710591 commit 5c06520

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

internal/cmd/internal/olmv1/alpha_install.go renamed to internal/cmd/internal/olmv1/operator_install.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"github.com/spf13/cobra"
55

66
"github.com/operator-framework/kubectl-operator/internal/cmd/internal/log"
7-
experimentalaction "github.com/operator-framework/kubectl-operator/internal/pkg/experimental/action"
7+
v1action "github.com/operator-framework/kubectl-operator/internal/pkg/v1/action"
88
"github.com/operator-framework/kubectl-operator/pkg/action"
99
)
1010

1111
func NewOperatorInstallCmd(cfg *action.Configuration) *cobra.Command {
12-
i := experimentalaction.NewOperatorInstall(cfg)
12+
i := v1action.NewOperatorInstall(cfg)
1313
i.Logf = log.Printf
1414

1515
cmd := &cobra.Command{

internal/cmd/internal/olmv1/alpha_uninstall.go renamed to internal/cmd/internal/olmv1/operator_uninstall.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"github.com/spf13/cobra"
55

66
"github.com/operator-framework/kubectl-operator/internal/cmd/internal/log"
7-
experimentalaction "github.com/operator-framework/kubectl-operator/internal/pkg/experimental/action"
7+
v1action "github.com/operator-framework/kubectl-operator/internal/pkg/v1/action"
88
"github.com/operator-framework/kubectl-operator/pkg/action"
99
)
1010

1111
func NewOperatorUninstallCmd(cfg *action.Configuration) *cobra.Command {
12-
u := experimentalaction.NewOperatorUninstall(cfg)
12+
u := v1action.NewOperatorUninstall(cfg)
1313
u.Logf = log.Printf
1414

1515
cmd := &cobra.Command{
File renamed without changes.

0 commit comments

Comments
 (0)