-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
179 changed files
with
4,242 additions
and
3,431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Manage your autoscaling groups. Autoscaling groups enable using the Kubernetes | ||
cluster-autoscaler to automatically scale your cluster. You can also autoscaling | ||
groups as a primitive for your own autoscaler. | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group [command] | ||
pspace autoscaling-group [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| ----------- | ------- | ------------------------------------------------------------ | -------- | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | | ||
|
||
#### Subcommands | ||
|
||
| Subcommand | Description | | ||
| ---------- | ----------------------------------------- | | ||
| `create` | Create an autoscaling group. | | ||
| `delete` | Delete an autoscaling group from a team. | | ||
| `get` | Get an autoscaling group from a team. | | ||
| `help` | Show help for a autoscaling-group command | | ||
| `list` | List autoscaling groups in your team. | | ||
|
||
Pick a subset of fields to display: | ||
|
||
```` | ||
pspace autoscaling-group list -F name -F dtCreated | ||
``` | | ||
| `update` | Update an autoscaling group. | | ||
```` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Create an autoscaling group. | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group create [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| ---------------------- | ------- | -------------------------------------------------------------------------- | -------- | | ||
| `fields` | F | The fields to include in the response. | false | | ||
| `name` | n | The name of the autoscaling group | true | | ||
| `cluster-id` | | The ID of the cluster | true | | ||
| `machine-type` | | The machine type for the autoscaling group | true | | ||
| `network-id` | | The ID of the network for the autoscaling group | true | | ||
| `template-id` | | The ID of the template for the autoscaling group | true | | ||
| `startup-script-id` | | The ID of the startup script for the autoscaling group | true | | ||
| `max` | | The maximum number of active machines in the autoscaling group | true | | ||
| `min` | | The minimum number of active machines in the autoscaling group | true | | ||
| `provisioning-timeout` | | The timeout for provisioning machines in the autoscaling group, in minutes | false | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Delete an autoscaling group from a team. | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group delete [arguments] [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| ----------- | ------- | ------------------------------------------------------------ | -------- | | ||
| `fields` | F | The fields to include in the response. | false | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Get an autoscaling group from a team. | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group get [arguments] [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| ----------- | ------- | ------------------------------------------------------------ | -------- | | ||
| `fields` | F | The fields to include in the response. | false | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
List autoscaling-group commands | ||
|
||
Example: | ||
|
||
``` | ||
$ pspace autoscaling-group help commands commands | ||
``` | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group help commands [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| ----------- | ------- | ------------------------------------------------------------ | -------- | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | | ||
| `all` | a | Show all commands, including hidden ones | false | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Show help for a autoscaling-group command | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group help [command] | ||
pspace autoscaling-group help [arguments] [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| ----------- | ------- | ------------------------------------------------------------ | -------- | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | | ||
|
||
#### Subcommands | ||
|
||
| Subcommand | Description | | ||
| ---------- | ------------------------------- | | ||
| `commands` | List autoscaling-group commands | | ||
|
||
Example: | ||
|
||
```` | ||
$ pspace autoscaling-group help commands commands | ||
``` | | ||
```` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
List autoscaling groups in your team. | ||
|
||
Pick a subset of fields to display: | ||
|
||
``` | ||
pspace autoscaling-group list -F name -F dtCreated | ||
``` | ||
|
||
### Usage | ||
|
||
``` | ||
pspace autoscaling-group list [flags] | ||
``` | ||
|
||
### Flags | ||
|
||
| Name | Aliases | Description | Required | | ||
| -------------- | ------- | ------------------------------------------------------------ | -------- | | ||
| `limit` | | The number of items to return in the next page. | false | | ||
| `after` | | The cursor to fetch the next results from. | false | | ||
| `orderBy` | | The field to order items by. | false | | ||
| `asc` | | Whether to order items ascending. | false | | ||
| `desc` | | Whether to order items descending. | false | | ||
| `fields` | F | The fields to include in the response. | false | | ||
| `cluster-id` | | Filter by cluster ID. | false | | ||
| `machine-type` | | Filter by machine type. | false | | ||
| `log-level` | l | Enable debug logging. | false | | ||
| `json` | j | Output JSON | false | | ||
| `api-key` | | A Paperspace public API Key used for authenticating requests | false | | ||
| `help` | h | Show help for a command | false | |
Oops, something went wrong.