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.
24 lines
407 B
24 lines
407 B
package main
|
|
|
|
import (
|
|
"github.com/codegangsta/cli"
|
|
)
|
|
|
|
func init() {
|
|
addCommands(redeployCommand())
|
|
}
|
|
|
|
func redeployCommand() cli.Command {
|
|
return cli.Command{
|
|
Name: "redeploy",
|
|
Usage: "update an existing deployment with a new configuration.",
|
|
ArgsUsage: "DEPLOYMENT",
|
|
Flags: []cli.Flag{
|
|
cli.StringFlag{
|
|
Name: "config,f",
|
|
Usage: "Configuration values file.",
|
|
},
|
|
},
|
|
}
|
|
}
|