correct help text for sync, fixes #62
This commit is contained in:
parent
5aa7da98af
commit
1a0d1192ce
|
|
@ -98,7 +98,7 @@ USAGE:
|
||||||
|
|
||||||
COMMANDS:
|
COMMANDS:
|
||||||
repos sync repositories from state file (helm repo add && helm repo update)
|
repos sync repositories from state file (helm repo add && helm repo update)
|
||||||
charts sync charts from state file (helm repo upgrade --install)
|
charts sync charts from state file (helm upgrade --install)
|
||||||
diff diff charts from state file against env (helm diff)
|
diff diff charts from state file against env (helm diff)
|
||||||
sync sync all resources from state file (repos && charts)
|
sync sync all resources from state file (repos && charts)
|
||||||
delete delete charts from state file (helm delete)
|
delete delete charts from state file (helm delete)
|
||||||
|
|
|
||||||
2
main.go
2
main.go
|
|
@ -82,7 +82,7 @@ func main() {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "charts",
|
Name: "charts",
|
||||||
Usage: "sync charts from state file (helm repo upgrade --install)",
|
Usage: "sync charts from state file (helm upgrade --install)",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "args",
|
Name: "args",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue