github.com/darkowlzz/helm@v2.5.1-0.20171213183701-6707fe0468d4+incompatible/cmd/helm/repo.go (about)

     1  /*
     2  Copyright 2016 The Kubernetes Authors All rights reserved.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package main
    18  
    19  import (
    20  	"io"
    21  
    22  	"github.com/spf13/cobra"
    23  )
    24  
    25  var repoHelm = `
    26  This command consists of multiple subcommands to interact with chart repositories.
    27  
    28  It can be used to add, remove, list, and index chart repositories.
    29  Example usage:
    30      $ helm repo add [NAME] [REPO_URL]
    31  `
    32  
    33  func newRepoCmd(out io.Writer) *cobra.Command {
    34  	cmd := &cobra.Command{
    35  		Use:   "repo [FLAGS] add|remove|list|index|update [ARGS]",
    36  		Short: "add, list, remove, update, and index chart repositories",
    37  		Long:  repoHelm,
    38  	}
    39  
    40  	cmd.AddCommand(newRepoAddCmd(out))
    41  	cmd.AddCommand(newRepoListCmd(out))
    42  	cmd.AddCommand(newRepoRemoveCmd(out))
    43  	cmd.AddCommand(newRepoIndexCmd(out))
    44  	cmd.AddCommand(newRepoUpdateCmd(out))
    45  
    46  	return cmd
    47  }