Skip to content

Commit

Permalink
Moving uploader and pusher out of action into pkg
Browse files Browse the repository at this point in the history
Signed-off-by: David Peraza <dperaza@redhat.com>
  • Loading branch information
dperaza4dustbit committed Jan 13, 2022
1 parent 7cab1a0 commit 9661e39
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion cmd/helm/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ func newRootCmd(actionConfig *action.Configuration, out io.Writer, args []string
newDocsCmd(out),
)

// Add *experimental* subcommands
cmd.AddCommand(
newRegistryCmd(actionConfig, out),
newPushCmd(actionConfig, out),
Expand Down
4 changes: 2 additions & 2 deletions pkg/action/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ package action
import (
"strings"

"helm.sh/helm/v3/pkg/action/pusher"
"helm.sh/helm/v3/pkg/action/uploader"
"helm.sh/helm/v3/pkg/cli"
"helm.sh/helm/v3/pkg/pusher"
"helm.sh/helm/v3/pkg/registry"
"helm.sh/helm/v3/pkg/uploader"
)

// Push is the action for uploading a chart.
Expand Down
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 @@ -22,7 +22,7 @@ import (

"github.com/pkg/errors"

"helm.sh/helm/v3/pkg/action/pusher"
"helm.sh/helm/v3/pkg/pusher"
"helm.sh/helm/v3/pkg/registry"
)

Expand Down
File renamed without changes.

0 comments on commit 9661e39

Please sign in to comment.