Package io.quarkus.kubernetes.deployment
Class AzureDiskVolumeConfig
- java.lang.Object
-
- io.quarkus.kubernetes.deployment.AzureDiskVolumeConfig
-
public class AzureDiskVolumeConfig extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAzureDiskVolumeConfig.CachingModestatic classAzureDiskVolumeConfig.Kind
-
Field Summary
Fields Modifier and Type Field Description (package private) AzureDiskVolumeConfig.CachingModecachingModeDisk caching mode.(package private) StringdiskNameThe name of the disk to mount.(package private) StringdiskURIThe URI of the vhd blob object OR the resourceID of an Azure managed data disk if Kind is Managed(package private) StringfsTypeFile system type.(package private) AzureDiskVolumeConfig.KindkindKind of disk.(package private) booleanreadOnlyWether the volumeName is read only or not.
-
Constructor Summary
Constructors Constructor Description AzureDiskVolumeConfig()
-
-
-
Field Detail
-
diskName
@ConfigItem String diskName
The name of the disk to mount.
-
diskURI
@ConfigItem String diskURI
The URI of the vhd blob object OR the resourceID of an Azure managed data disk if Kind is Managed
-
kind
@ConfigItem(defaultValue="Managed") AzureDiskVolumeConfig.Kind kind
Kind of disk.
-
cachingMode
@ConfigItem(defaultValue="ReadWrite") AzureDiskVolumeConfig.CachingMode cachingMode
Disk caching mode.
-
fsType
@ConfigItem(defaultValue="ext4") String fsType
File system type.
-
readOnly
@ConfigItem boolean readOnly
Wether the volumeName is read only or not.
-
-