summaryrefslogtreecommitdiff
path: root/droplet.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-24 16:09:39 -0500
committerJeff Carr <[email protected]>2024-10-24 16:09:39 -0500
commit5b7c1879c6ed68ec37c3b89f9eec82775a5d891a (patch)
treee1b1c40170ce3ccf403f9966aec04f621a499f28 /droplet.proto
parent7a31bd08c53e4e21297e8fa5a9a2f1ec39294530 (diff)
minor formating
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'droplet.proto')
-rw-r--r--droplet.proto12
1 files changed, 6 insertions, 6 deletions
diff --git a/droplet.proto b/droplet.proto
index 7c7f2fb..9dbba2c 100644
--- a/droplet.proto
+++ b/droplet.proto
@@ -13,17 +13,17 @@ message Droplet {
int64 cpus = 3; // what's the point of int64 vs int32
int64 memory = 4; // in bytes
DropletState start_state = 5; // what the state of the droplet is SUPPOSED TO BE ('on' or 'off')
- string notes = 6; // maybe useful for something
+ string notes = 6; // maybe useful for something
string preferred_hypervisor = 7; // the hypervisor to prefer to run the droplet on
- string qemu_arch = 8; // what arch. example: "x86_64" or "riscv64"
- string qemu_cpu = 9; // qemu-system -cpu help
- string qemu_machine = 10; // qemu-system -machine help
- int64 spice_port = 11; // preferred port to use for spice
+ string qemu_arch = 8; // what arch. example: "x86_64" or "riscv64"
+ string qemu_cpu = 9; // qemu-system -cpu help
+ string qemu_machine = 10; // qemu-system -machine help
+ int64 spice_port = 11; // preferred port to use for spice
repeated Network networks = 12; // really just mac addresses. should be unique across cluster
repeated Disk disks = 13; // disks to attach
- DropletState state = 14; // if the droplet is on, off, etc
+ DropletState state = 14; // if the droplet is on, off, etc
// trying to figure out how this stuff should work
google.protobuf.Any testany = 15;