mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
77 lines
2.0 KiB
/*
|
|
Copyright The Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"helm.sh/helm/v3/cmd/helm/require"
|
|
"helm.sh/helm/v3/pkg/action"
|
|
"helm.sh/helm/v3/pkg/pusher"
|
|
)
|
|
|
|
const pushDesc = `
|
|
Upload a chart to a registry.
|
|
|
|
If the chart has an associated provenance file,
|
|
it will also be uploaded.
|
|
`
|
|
|
|
func newPushCmd(cfg *action.Configuration, out io.Writer) *cobra.Command {
|
|
client := action.NewPushWithOpts(action.WithPushConfig(cfg))
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "push [chart] [remote]",
|
|
Short: "push a chart to remote",
|
|
Long: pushDesc,
|
|
Args: require.MinimumNArgs(2),
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
if len(args) == 0 {
|
|
// Do file completion for the chart file to push
|
|
return nil, cobra.ShellCompDirectiveDefault
|
|
}
|
|
if len(args) == 1 {
|
|
providers := []pusher.Provider(pusher.All(settings))
|
|
var comps []string
|
|
for _, p := range providers {
|
|
for _, scheme := range p.Schemes {
|
|
comps = append(comps, fmt.Sprintf("%s://", scheme))
|
|
}
|
|
}
|
|
return comps, cobra.ShellCompDirectiveNoFileComp | cobra.ShellCompDirectiveNoSpace
|
|
}
|
|
return nil, cobra.ShellCompDirectiveNoFileComp
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
chartRef := args[0]
|
|
remote := args[1]
|
|
client.Settings = settings
|
|
output, err := client.Run(chartRef, remote)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Fprint(out, output)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|