exo-compute-instance

Exoscale virtual machine lifecycle management

TLDR

List instances
$ exo compute instance list
Create an instance
$ exo compute instance create [name] --zone [ch-gva-2] --template [Linux Ubuntu]
Show instance details
$ exo compute instance show [name]
Start an instance
$ exo compute instance start [name]
Stop an instance
$ exo compute instance stop [name]
Delete an instance
$ exo compute instance delete [name]
SSH into instance
$ exo compute instance ssh [name]

SYNOPSIS

exo compute instance command [options]

DESCRIPTION

exo compute instance manages Exoscale compute instances (virtual machines). It handles the full lifecycle from creation through deletion, including power management and configuration.Instances run in specified availability zones with configurable templates, instance types, security groups, and SSH keys. The tool provides convenient SSH access and management without using the web console.Commands support all instance operations including resizing, rebooting, and attaching to networks and storage.

SUBCOMMANDS

list

List instances.
create
Create an instance.
show
Show instance details.
start
Start instance.
stop
Stop instance.
reboot
Reboot instance.
delete
Delete instance.
ssh
SSH into instance.
resize
Resize instance.

INSTALL

sudo dnf install exo
sudo pacman -S exo
sudo apk add exoscale
nix profile install nixpkgs#exo

SEE ALSO

exo(1), exo-compute(1), exo-compute-block-storage(1)

RESOURCES

Source code · Homepage