linode-cli-*: update pages;move pages to common directory;linode-cli-{account,events,tickets,volumes}:add page
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli: update description linodes: update page linode-cli-account: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-events: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-volumes: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-tickets: add page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli: update page Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> linode-cli-domains: update page Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
# linode-cli domains
|
||||
|
||||
> Manage Linode Domains and DNS configuration.
|
||||
> See also: `linode-cli`.
|
||||
> More information: <https://www.linode.com/docs/products/tools/cli/guides/domains/>.
|
||||
|
||||
- List all managed domains:
|
||||
|
||||
`linode-cli domains list`
|
||||
|
||||
- Create a new managed domain:
|
||||
|
||||
`linode-cli domains create --domain {{domain_name}} --type {{master/slave}} --soa-email {{email}}`
|
||||
|
||||
- View details of a specific domain:
|
||||
|
||||
`linode-cli domains view {{domain_id}}`
|
||||
|
||||
- Delete a managed domain:
|
||||
|
||||
`linode-cli domains delete {{domain_id}}`
|
||||
|
||||
- List records for a specific domain:
|
||||
|
||||
`linode-cli domains records-list {{domain_id}}`
|
||||
|
||||
- Add a DNS record to a domain:
|
||||
|
||||
`linode-cli domains records-create {{domain_id}} --type {{A/AAAA/CNAME/MX/...}} --name {{subdomain}} --target {{target_value}}`
|
||||
|
||||
- Update a DNS record for a domain:
|
||||
|
||||
`linode-cli domains records-update {{domain_id}} {{record_id}} --target {{new_target_value}}`
|
||||
|
||||
- Delete a DNS record from a domain:
|
||||
|
||||
`linode-cli domains records-delete [domain-id] [record-id]`
|
@@ -1,37 +0,0 @@
|
||||
# linode-cli linodes
|
||||
|
||||
> Manage Linode instances.
|
||||
> See also: `linode-cli`.
|
||||
> More information: <https://www.linode.com/docs/products/tools/cli/guides/linode-instances/>.
|
||||
|
||||
- List all Linodes:
|
||||
|
||||
`linode-cli linodes list`
|
||||
|
||||
- Create a new Linode:
|
||||
|
||||
`linode-cli linodes create --type {{linode_type}} --region {{region}} --image {{image_id}}`
|
||||
|
||||
- View details of a specific Linode:
|
||||
|
||||
`linode-cli linodes view {{linode_id}}`
|
||||
|
||||
- Update settings for a Linode:
|
||||
|
||||
`linode-cli linodes update {{linode_id}} --label {{[new_label}}`
|
||||
|
||||
- Delete a Linode:
|
||||
|
||||
`linode-cli linodes delete {{linode_id}}`
|
||||
|
||||
- Perform power management operation (Boot/reboot/shutdown) on a Linode:
|
||||
|
||||
`linode-cli linodes {{boot/reboot/shutdown}} {{linode_id}}`
|
||||
|
||||
- List available backups for a Linode:
|
||||
|
||||
`linode-cli linodes backups-list {{linode_id}}`
|
||||
|
||||
- Restore a backup to a Linode:
|
||||
|
||||
`linode-cli linodes backups-restore {{linode_id}} --backup-id {{backup_id}}`
|
@@ -1,25 +0,0 @@
|
||||
# linode-cli lke
|
||||
|
||||
> Manage Linode Kubernetes Engine (LKE) clusters.
|
||||
> See also: `linode-cli`.
|
||||
> More information: <https://www.linode.com/docs/products/tools/cli/guides/linode-kubernetes-engine/>.
|
||||
|
||||
- List all LKE clusters:
|
||||
|
||||
`linode-cli lke clusters list`
|
||||
|
||||
- Create a new LKE cluster:
|
||||
|
||||
`linode-cli lke clusters create --region {{region}} --type {{type}} --node-type {{node_type}} --nodes-count {{count}}`
|
||||
|
||||
- View details of a specific LKE cluster:
|
||||
|
||||
`linode-cli lke clusters view {{cluster_id}}`
|
||||
|
||||
- Update an existing LKE cluster:
|
||||
|
||||
`linode-cli lke clusters update {{cluster_id}} --node-type {{new_node_type}}`
|
||||
|
||||
- Delete an LKE cluster:
|
||||
|
||||
`linode-cli lke clusters delete {{cluster_id}}`
|
@@ -1,33 +0,0 @@
|
||||
# linode-cli nodebalancers
|
||||
|
||||
> Manage Linode NodeBalancers.
|
||||
> See also: `linode-cli`.
|
||||
> More information: <https://www.linode.com/docs/products/tools/cli/guides/nodebalancers/>.
|
||||
|
||||
- List all NodeBalancers:
|
||||
|
||||
`linode-cli nodebalancers list`
|
||||
|
||||
- Create a new NodeBalancer:
|
||||
|
||||
`linode-cli nodebalancers create --region {{region}}`
|
||||
|
||||
- View details of a specific NodeBalancer:
|
||||
|
||||
`linode-cli nodebalancers view {{nodebalancer_id}}`
|
||||
|
||||
- Update an existing NodeBalancer:
|
||||
|
||||
`linode-cli nodebalancers update {{nodebalancer_id}} --label {{new_label}}`
|
||||
|
||||
- Delete a NodeBalancer:
|
||||
|
||||
`linode-cli nodebalancers delete {{nodebalancer_id}}`
|
||||
|
||||
- List configurations for a NodeBalancer:
|
||||
|
||||
`linode-cli nodebalancers configs list {{nodebalancer_id}}`
|
||||
|
||||
- Add a new configuration to a NodeBalancer:
|
||||
|
||||
`linode-cli nodebalancers configs create {{nodebalancer_id}} --port {{port}} --protocol {{protocol}}`
|
@@ -1,33 +0,0 @@
|
||||
# linode-cli object-storage
|
||||
|
||||
> Manage Linode Object Storage.
|
||||
> See also: `linode-cli`.
|
||||
> More information: <https://www.linode.com/docs/products/tools/cli/guides/object-storage/>.
|
||||
|
||||
- List all Object Storage buckets:
|
||||
|
||||
`linode-cli object-storage buckets list`
|
||||
|
||||
- Create a new Object Storage bucket:
|
||||
|
||||
`linode-cli object-storage buckets create --cluster {{cluster_id}} --label {{bucket_label}}`
|
||||
|
||||
- Delete an Object Storage bucket:
|
||||
|
||||
`linode-cli object-storage buckets delete {{cluster_id}} {{bucket_label}}`
|
||||
|
||||
- List Object Storage cluster regions:
|
||||
|
||||
`linode-cli object-storage clusters list`
|
||||
|
||||
- List access keys for Object Storage:
|
||||
|
||||
`linode-cli object-storage keys list`
|
||||
|
||||
- Create a new access key for Object Storage:
|
||||
|
||||
`linode-cli object-storage keys create --label {{label}}`
|
||||
|
||||
- Revoke an access key for Object Storage:
|
||||
|
||||
`linode-cli object-storage keys revoke {{access_key_id}}`
|
@@ -1,25 +0,0 @@
|
||||
# linode-cli
|
||||
|
||||
> Command-line interface for managing Linode cloud services.
|
||||
> Some subcommands such as `linode-cli linodes` have their own usage documentation.
|
||||
> More information: <https://www.linode.com/docs/products/tools/cli/get-started/>.
|
||||
|
||||
- List all Linodes:
|
||||
|
||||
`linode-cli linodes list`
|
||||
|
||||
- View documentation for managing Linode Kubernetes Engine (LKE):
|
||||
|
||||
`tldr linode-cli lke`
|
||||
|
||||
- View documentation for managing NodeBalancers:
|
||||
|
||||
`tldr linode-cli nodebalancers`
|
||||
|
||||
- View documentation for managing Object Storage:
|
||||
|
||||
` tldr linode-cli object-storage`
|
||||
|
||||
- View documentation for managing DNS domains:
|
||||
|
||||
`tldr linode-cli domains`
|
Reference in New Issue
Block a user