Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
Revert "Externalize storage package"
Browse files Browse the repository at this point in the history
This reverts commit 19f2876.
  • Loading branch information
anik120 authored and joelanford committed Sep 19, 2023
1 parent 426a902 commit aadd856
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/core/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ import (
"github.com/operator-framework/rukpak/internal/provisioner/plain"
"github.com/operator-framework/rukpak/internal/provisioner/registry"
"github.com/operator-framework/rukpak/internal/source"
"github.com/operator-framework/rukpak/internal/storage"
"github.com/operator-framework/rukpak/internal/uploadmgr"
"github.com/operator-framework/rukpak/internal/util"
"github.com/operator-framework/rukpak/internal/version"
"github.com/operator-framework/rukpak/pkg/storage"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/helm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ import (
"github.com/operator-framework/rukpak/internal/finalizer"
"github.com/operator-framework/rukpak/internal/provisioner/helm"
"github.com/operator-framework/rukpak/internal/source"
"github.com/operator-framework/rukpak/internal/storage"
"github.com/operator-framework/rukpak/internal/util"
"github.com/operator-framework/rukpak/internal/version"
"github.com/operator-framework/rukpak/pkg/storage"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion internal/controllers/bundle/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (

rukpakv1alpha1 "github.com/operator-framework/rukpak/api/v1alpha1"
"github.com/operator-framework/rukpak/internal/source"
"github.com/operator-framework/rukpak/internal/storage"
"github.com/operator-framework/rukpak/internal/util"
"github.com/operator-framework/rukpak/pkg/storage"
)

type Option func(*controller)
Expand Down
2 changes: 1 addition & 1 deletion internal/controllers/bundledeployment/bundledeployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import (

rukpakv1alpha1 "github.com/operator-framework/rukpak/api/v1alpha1"
helmpredicate "github.com/operator-framework/rukpak/internal/helm-operator-plugins/predicate"
"github.com/operator-framework/rukpak/internal/storage"
"github.com/operator-framework/rukpak/internal/util"
"github.com/operator-framework/rukpak/pkg/storage"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion internal/finalizer/deletecachedbundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/finalizer"

"github.com/operator-framework/rukpak/pkg/storage"
"github.com/operator-framework/rukpak/internal/storage"
)

var _ finalizer.Finalizer = &DeleteCachedBundle{}
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.
2 changes: 1 addition & 1 deletion test/e2e/plain_provisioner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import (
rukpakv1alpha1 "github.com/operator-framework/rukpak/api/v1alpha1"
"github.com/operator-framework/rukpak/internal/provisioner/plain"
"github.com/operator-framework/rukpak/internal/rukpakctl"
"github.com/operator-framework/rukpak/internal/storage"
"github.com/operator-framework/rukpak/internal/util"
"github.com/operator-framework/rukpak/pkg/storage"
)

const (
Expand Down

0 comments on commit aadd856

Please sign in to comment.