-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Description
Currently volume drivers are defined as enum but this makes it impossible to use a custom driver (plugins have names and there's no field to specify the name)
gnoi/containerz/containerz.proto
Lines 636 to 645 in d04468f
| enum Driver { | |
| DS_UNSPECIFIED = 0; | |
| // Refers to the standard mount(8) built-in volume driver. | |
| DS_LOCAL = 1; | |
| // Refers to a custom volume driver that should be loaded via Plugin RPCs. | |
| DS_CUSTOM = 2; | |
| } | |
The field must be of type string instead (unless you intend to enumerate all possible drivers)
Metadata
Metadata
Assignees
Labels
No labels