Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cherryservers/cherryctl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f53b1820f8c938d45fa916de04044af5157032fe
Choose a base ref
..
head repository: cherryservers/cherryctl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 016303d591549db71254c7a8214f4b1afb5225a5
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 docs/cherryctl_server_create.md
6 changes: 3 additions & 3 deletions docs/cherryctl_server_create.md
Original file line number Diff line number Diff line change
@@ -4,17 +4,17 @@ Create a server.

### Synopsis

Create a server in speficied project.
Create a server in specified project.

```
cherryctl server create -p <project_id> --plan <plan_slug> --hostname --region <region_slug> [--image <image_slug>] [--ssh-keys <ssh_key_ids>] [--ip-addresses <ip_addresses_ids>] [--os-partition-size <size>] [--userdata-file <filepath>] [--tags] [--spot-instance] [flags]
cherryctl server create -p <project_id> --plan <plan_slug> --region <region_slug> [--hostname <hostname>] [--image <image_slug>] [--ssh-keys <ssh_key_ids>] [--ip-addresses <ip_addresses_ids>] [--os-partition-size <size>] [--userdata-file <filepath>] [--tags] [--spot-instance] [flags]
```

### Examples

```
# Provisions a E5-1620v4 server in EU-Nord-1 location running on a Ubuntu 20.04:
cherryctl server create -p <project_id> --plan e5_1620v4 -h staging-server-1 --image ubuntu_20_04 --region eu_nord_1
cherryctl server create -p <project_id> --plan e5_1620v4 --hostname staging-server-1 --image ubuntu_20_04 --region eu_nord_1
```

### Options