// Scale grows or shrinks the number of running components. func (c *Client) Scale(argv []string) error { usage := `Grows or shrinks the number of running components. Currently "router", "registry" and "store-gateway" are the only types that can be scaled. Usage: deisctl scale [<target>...] [options] ` // parse command-line arguments args, err := docopt.Parse(usage, argv, true, "", false) if err != nil { return err } return cmd.Scale(args["<target>"].([]string), c.Backend) }
// Scale grows or shrinks the number of running components. func (c *Client) Scale(argv []string) error { return cmd.Scale(argv, c.Backend) }