Browse Source

Add comma-separated no-deploy values

This allows no-deploy values to be either specified as multiple --no-deploy invocations,
or a single invocation with comma-separated values.
pull/851/head
Xavier Landreville 5 years ago
parent
commit
2f4a08c54d
  1. 7
      pkg/cli/server/server.go

7
pkg/cli/server/server.go

@ -132,7 +132,14 @@ func run(app *cli.Context, cfg *cmds.Server) error {
serverConfig.ControlConfig.DefaultLocalStoragePath = cfg.DefaultLocalStoragePath
}
noDeploys := make([]string, 0)
for _, noDeploy := range app.StringSlice("no-deploy") {
for _, splitNoDeploy := range strings.Split(noDeploy, ",") {
noDeploys = append(noDeploys, splitNoDeploy)
}
}
for _, noDeploy := range noDeploys {
if noDeploy == "servicelb" {
serverConfig.DisableServiceLB = true
continue

Loading…
Cancel
Save