LocalVolumeSource

case class LocalVolumeSource(fsType: Optional[String], path: String)

Local represents directly-attached storage with node affinity (Beta feature)

Value Params
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 fileystem if unspecified.

path

The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getFsType: IO[K8sFailure, String]

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 fileystem if unspecified.

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 fileystem 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. It can be either a directory or block device (disk, partition, ...).

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.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product