Interface MountVolumeOptionsDriverConfig

Map of driver specific options MountVolumeOptionsDriverConfig

interface MountVolumeOptionsDriverConfig {
    Name?: string;
    Options?: {
        [key: string]: string;
    };
}

Properties

Properties

Name?: string

Name of the driver to use to create the volume.

Options?: {
    [key: string]: string;
}

key/value map of driver specific options.