Skip to content

containerz volume driver enum #284

@LimeHat

Description

@LimeHat

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)

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)

@robshakir @alshabib

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions