fix: repos command help message (#698)
This commit is contained in:
parent
a8574ba0cf
commit
cb50fa932c
|
|
@ -13,7 +13,7 @@ func NewReposCmd(globalCfg *config.GlobalImpl) *cobra.Command {
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "repos",
|
Use: "repos",
|
||||||
Short: "Repos releases defined in state file",
|
Short: "Add chart repositories defined in state file",
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
reposImpl := config.NewReposImpl(globalCfg, reposOptions)
|
reposImpl := config.NewReposImpl(globalCfg, reposOptions)
|
||||||
err := config.NewCLIConfigImpl(reposImpl.GlobalImpl)
|
err := config.NewCLIConfigImpl(reposImpl.GlobalImpl)
|
||||||
|
|
|
||||||
|
|
@ -522,7 +522,7 @@ Available Commands:
|
||||||
init Initialize the helmfile, includes version checking and installation of helm and plug-ins
|
init Initialize the helmfile, includes version checking and installation of helm and plug-ins
|
||||||
lint Lint charts from state file (helm lint)
|
lint Lint charts from state file (helm lint)
|
||||||
list List releases defined in state file
|
list List releases defined in state file
|
||||||
repos Repos releases defined in state file
|
repos Add chart repositories defined in state file
|
||||||
status Retrieve status of releases in state file
|
status Retrieve status of releases in state file
|
||||||
sync Sync releases defined in state file
|
sync Sync releases defined in state file
|
||||||
template Template releases defined in state file
|
template Template releases defined in state file
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue