case class LocalVolumeSource(fsType: Optional[String] = Optional.Absent, path: String) extends Product with Serializable
Local represents directly-attached storage with node affinity (Beta feature)
- fsType
 Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
- path
 The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).
- Alphabetic
 - By Inheritance
 
- LocalVolumeSource
 - Serializable
 - Serializable
 - Product
 - Equals
 - AnyRef
 - Any
 
- Hide All
 - Show All
 
- Public
 - All
 
Instance Constructors
- 
      
      
      
        
      
    
      
        
        new
      
      
        LocalVolumeSource(fsType: Optional[String] = Optional.Absent, path: String)
      
      
      
- fsType
 Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
- path
 The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).
 
Value Members
-  val fsType: Optional[String]
 - 
      
      
      
        
      
    
      
        
        def
      
      
        getFsType: IO[K8sFailure, String]
      
      
      
Filesystem type to mount.
Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
 - 
      
      
      
        
      
    
      
        
        def
      
      
        getPath: IO[K8sFailure, String]
      
      
      
The full path to the volume on the node.
The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).
This effect always succeeds, it is safe to use the field path directly.
 -  val path: String