Skip to content

Commit

Permalink
rearrange helm library related code to internal/legacy/
Browse files Browse the repository at this point in the history
  • Loading branch information
varshaprasad96 committed Oct 27, 2021
1 parent d147756 commit 5e46b52
Show file tree
Hide file tree
Showing 18 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions internal/cmd/helm-operator/run/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import (
"runtime"
"strings"

"github.com/operator-framework/helm-operator-plugins/internal/controller"
"github.com/operator-framework/helm-operator-plugins/internal/flags"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/controller"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/release"
"github.com/operator-framework/helm-operator-plugins/internal/metrics"
"github.com/operator-framework/helm-operator-plugins/internal/release"
"github.com/operator-framework/helm-operator-plugins/internal/version"
helmmgr "github.com/operator-framework/helm-operator-plugins/pkg/manager"
watches "github.com/operator-framework/helm-operator-plugins/pkg/watches/helm"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/source"
"sigs.k8s.io/yaml"

"github.com/operator-framework/helm-operator-plugins/internal/release"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/release"
"github.com/operator-framework/helm-operator-plugins/pkg/sdk/controllerutil"
libhandler "github.com/operator-framework/operator-lib/handler"
"github.com/operator-framework/operator-lib/predicate"
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ import (
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
"sigs.k8s.io/controller-runtime/pkg/reconcile"

"github.com/operator-framework/helm-operator-plugins/internal/helm/diff"
"github.com/operator-framework/helm-operator-plugins/internal/helm/types"
"github.com/operator-framework/helm-operator-plugins/internal/release"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/helm/diff"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/helm/types"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/release"
)

// blank assignment to verify that HelmOperatorReconciler implements reconcile.Reconciler
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import (
"k8s.io/cli-runtime/pkg/resource"
"k8s.io/client-go/discovery"

"github.com/operator-framework/helm-operator-plugins/internal/helm/types"
"github.com/operator-framework/helm-operator-plugins/internal/manifestutil"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/helm/types"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/manifestutil"
)

// Manager manages a Helm release. It can install, upgrade, reconcile,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import (
v1 "k8s.io/client-go/kubernetes/typed/core/v1"
crmanager "sigs.k8s.io/controller-runtime/pkg/manager"

"github.com/operator-framework/helm-operator-plugins/internal/helm/types"
"github.com/operator-framework/helm-operator-plugins/pkg/client/helm/client"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/helm/client"
"github.com/operator-framework/helm-operator-plugins/internal/legacy/helm/types"
)

// ManagerFactory creates Managers that are specific to custom resources. It is
Expand Down
File renamed without changes.

0 comments on commit 5e46b52

Please sign in to comment.