diff options
| author | Jeff Carr <[email protected]> | 2024-10-26 00:23:26 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-26 00:23:26 -0500 |
| commit | f8981ab3c1c78e3fe25e7d35024c87dd3dceec01 (patch) | |
| tree | b7ca6d50f8b70d6b900c84459fed6027ad0959f5 | |
| parent | 473729eb35969597cd4e98d8efb56fef8ee88427 (diff) | |
store dirs
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | cluster.proto | 1 | ||||
| -rw-r--r-- | droplet.proto | 3 |
2 files changed, 3 insertions, 1 deletions
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; } |
