Skip to content

Commit

Permalink
chore(server): use --ssh-keys in examples that use default template
Browse files Browse the repository at this point in the history
  • Loading branch information
kangasta committed Jul 17, 2024
1 parent 3402622 commit f5ab090
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions internal/commands/server/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ func CreateCommand() commands.Command {
BaseCommand: commands.New(
"create",
"Create a server",
"upctl server create --title myapp --zone fi-hel1 --hostname myapp --password-delivery email",
"upctl server create --wait --title myapp --zone fi-hel1 --hostname myapp --password-delivery email",
"upctl server create --title \"My Server\" --zone fi-hel1 --hostname myapp --password-delivery email",
"upctl server create --zone fi-hel1 --hostname myapp --password-delivery email --plan 2xCPU-4GB",
"upctl server create --zone fi-hel1 --hostname myapp --password-delivery email --plan custom --cores 2 --memory 4096",
"upctl server create --title myapp --zone fi-hel1 --hostname myapp --ssh-keys /path/to/publickey",
"upctl server create --wait --title myapp --zone fi-hel1 --hostname myapp --ssh-keys /path/to/publickey",
"upctl server create --title \"My Server\" --zone fi-hel1 --hostname myapp --ssh-keys /path/to/publickey",
"upctl server create --zone fi-hel1 --hostname myapp --ssh-keys /path/to/publickey --plan 2xCPU-4GB",
"upctl server create --zone fi-hel1 --hostname myapp --ssh-keys /path/to/publickey --plan custom --cores 2 --memory 4096",
"upctl server create --zone fi-hel1 --hostname myapp --password-delivery email --os \"Debian GNU/Linux 10 (Buster)\" --server-group a4643646-8342-4324-4134-364138712378",
"upctl server create --zone fi-hel1 --hostname myapp --ssh-keys /path/to/publickey --network type=private,network=037a530b-533e-4cef-b6ad-6af8094bb2bc,ip-address=10.0.0.1",
),
Expand Down

0 comments on commit f5ab090

Please sign in to comment.