Skip to content

Instantly share code, notes, and snippets.

@OriHoch
Created February 10, 2019 12:15
Show Gist options
  • Save OriHoch/f04ab929b448a15f3d6018172991d0bd to your computer and use it in GitHub Desktop.
Save OriHoch/f04ab929b448a15f3d6018172991d0bd to your computer and use it in GitHub Desktop.
Usage: cloudcli [OPTIONS] COMMAND [ARGS..]
Cloud Infrastructure Management
All commands accept relevant configurations on STDIN in yaml format.
Each commands help message provides usage examples.
Options:
--debug
--help
Command Groups:
server Manage servers
network Manage networks
storage Manage storage
options List the available server options
Usage: cloudcli server [OPTIONS] COMMAND [ARGS..]
Manage servers
Command Groups:
options Show available server options
create
delete
Usage: cloudcli server create [OPTIONS]
Create a server
Options:
--config-file SERVER_CONFIG_FILE_NAME
Example Usage:
echo '
name: my-server
image: ubuntu_18.04_64
ram: 4096
cpu: 1b
' | cloudcli server create
Usage: cloudcli server delete [OPTIONS]
Delete a server
Options:
--config-file SERVER_CONFIG_FILE_NAME
Example Usage:
echo 'name: my-server' | cloudcli server delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment