case class VolumeAttachmentSource(inlineVolumeSpec: Optional[PersistentVolumeSpec] = Optional.Absent, persistentVolumeName: Optional[String] = Optional.Absent) extends Product with Serializable

VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

persistentVolumeName

Name of the persistent volume to attach.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VolumeAttachmentSource
  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 VolumeAttachmentSource(inlineVolumeSpec: Optional[PersistentVolumeSpec] = Optional.Absent, persistentVolumeName: Optional[String] = Optional.Absent)

    persistentVolumeName

    Name of the persistent volume to attach.

Value Members

  1. def getInlineVolumeSpec: IO[K8sFailure, PersistentVolumeSpec]

    Gets inlineVolumeSpec.

    Gets inlineVolumeSpec.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  2. def getPersistentVolumeName: IO[K8sFailure, String]

    Name of the persistent volume to attach.

    Name of the persistent volume to attach.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. val inlineVolumeSpec: Optional[PersistentVolumeSpec]
  4. val persistentVolumeName: Optional[String]