mirror of https://github.com/helm/helm
Signed-off-by: Josh Dolitsky <jdolitsky@gmail.com>pull/5597/head
parent
a138699686
commit
7fef0b0701
@ -0,0 +1,45 @@
|
||||
/*
|
||||
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 (
|
||||
"io"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
||||
"helm.sh/helm/pkg/action"
|
||||
)
|
||||
|
||||
const registryHelp = `
|
||||
This command consists of multiple subcommands to interact with registries.
|
||||
|
||||
It can be used to login to or logout from a registry.
|
||||
Example usage:
|
||||
$ helm registry login [URL]
|
||||
`
|
||||
|
||||
func newRegistryCmd(cfg *action.Configuration, out io.Writer) *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "registry",
|
||||
Short: "login to or logout from a registry",
|
||||
Long: registryHelp,
|
||||
}
|
||||
cmd.AddCommand(
|
||||
newRegistryLoginCmd(cfg, out),
|
||||
newRegistryLogoutCmd(cfg, out),
|
||||
)
|
||||
return cmd
|
||||
}
|
Loading…
Reference in new issue