summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-22 18:06:49 -0500
committerJeff Carr <[email protected]>2024-10-22 18:06:49 -0500
commit2fe96457eff2ee02ed7eea99049f2164a43e9e63 (patch)
tree1c2c475d639aa0f10e2d8d9218a293a6b243f1bc
parent5f599fe00e8ef8295a20cb5fcad2bdedcadb25cb (diff)
comments
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--droplet.proto6
1 files changed, 2 insertions, 4 deletions
diff --git a/droplet.proto b/droplet.proto
index f1638be..c1cdf3d 100644
--- a/droplet.proto
+++ b/droplet.proto
@@ -9,15 +9,13 @@ message Droplet {
string hostname = 3;
int64 cpus = 4;
int64 memory = 5;
- string start_state = 6;
- // int64 disk = 6;
- // string base_image = 7;
+ string start_state = 6; // what the state of the droplet is SUPPOSED TO BE ('on' or 'off')
repeated Network networks = 7;
repeated Disk disks = 8;
string comment = 9;
- string preferred_hypervisor = 10;
+ string preferred_hypervisor = 10; // the hypervisor to prefer to run the droplet on
google.protobuf.Any testany = 11;
StorageInfo humantest = 12;
}