Packages

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, ...).

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LocalVolumeSource
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. 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

  1. val fsType: Optional[String]
  2. 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.

  3. 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.

  4. val path: String