Moving uploader and pusher out of action into pkg

Signed-off-by: David Peraza <dperaza@redhat.com>
pull/10546/head
David Peraza 3 years ago
parent 7cab1a09e3
commit 9661e39dce

@ -193,7 +193,6 @@ func newRootCmd(actionConfig *action.Configuration, out io.Writer, args []string
newDocsCmd(out), newDocsCmd(out),
) )
// Add *experimental* subcommands
cmd.AddCommand( cmd.AddCommand(
newRegistryCmd(actionConfig, out), newRegistryCmd(actionConfig, out),
newPushCmd(actionConfig, out), newPushCmd(actionConfig, out),

@ -19,10 +19,10 @@ package action
import ( import (
"strings" "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/cli"
"helm.sh/helm/v3/pkg/pusher"
"helm.sh/helm/v3/pkg/registry" "helm.sh/helm/v3/pkg/registry"
"helm.sh/helm/v3/pkg/uploader"
) )
// Push is the action for uploading a chart. // Push is the action for uploading a chart.

@ -22,7 +22,7 @@ import (
"github.com/pkg/errors" "github.com/pkg/errors"
"helm.sh/helm/v3/pkg/action/pusher" "helm.sh/helm/v3/pkg/pusher"
"helm.sh/helm/v3/pkg/registry" "helm.sh/helm/v3/pkg/registry"
) )
Loading…
Cancel
Save