From f8981ab3c1c78e3fe25e7d35024c87dd3dceec01 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 26 Oct 2024 00:23:26 -0500 Subject: [PATCH] store dirs Signed-off-by: Jeff Carr --- cluster.proto | 1 + droplet.proto | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cluster.proto b/cluster.proto index 77ca62e..8631e43 100644 --- a/cluster.proto +++ b/cluster.proto @@ -8,4 +8,5 @@ message Cluster { int64 id = 1; repeated Droplet droplets = 2; repeated Hypervisor hypervisors = 3; + repeated string dirs = 4; } diff --git a/droplet.proto b/droplet.proto index c3b7bd1..9ac8e42 100644 --- a/droplet.proto +++ b/droplet.proto @@ -43,5 +43,6 @@ message Network { message Disk { string filename = 1; - int64 size = 2; + string filepath = 2; + int64 size = 3; }