Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions protect/control/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,7 @@ message ZoneScratchDiskSpec {
oneof backend {
ZoneScratchDiskSpecImage image = 1;
ZoneScratchDiskSpecStaticBlock block = 2;
ZoneScratchDiskInternalTmpfs internal_tmpfs = 3;
}
}

Expand All @@ -494,6 +495,13 @@ message ZoneScratchDiskSpecStaticBlock {
string device = 2;
}

message ZoneScratchDiskInternalTmpfs {
oneof size {
uint32 percent = 1;
uint64 exact = 2;
}
}

message ZoneDeviceStatus {
repeated ZoneDiskStatus disks = 1;
ZoneMountStatus mount = 2;
Expand Down