Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable droplet-autoscaler commands #1633

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions commands/droplet_autoscale.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,12 @@ import (
func DropletAutoscale() *Command {
cmd := &Command{
Command: &cobra.Command{
Hidden: true,
Use: "droplet-autoscale",
Aliases: []string{"das"},
Short: "Display commands to manage Droplet autoscale pools",
Long: `Use the subcommands of ` + "`" + `doctl compute droplet-autoscale` + "`" + ` to perform actions on Droplet Autoscale Pools.

You can use droplet-autoscale to perform CRUD operations on a Droplet Autoscale Pools.`,
You can use droplet-autoscale to perform CRUD operations on a Droplet Autoscale Pool.`,
},
}
cmdDropletAutoscaleCreate := CmdBuilder(cmd, RunDropletAutoscaleCreate, "create", "Create a new Droplet autoscale pool", "", Writer, displayerType(&displayers.DropletAutoscalePools{}))
Expand Down
Loading