com.coralogix.zio.k8s.model.storage.v1alpha1

Type members

Classlikes

VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.

VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.

VolumeAttachment objects are non-namespaced.

Companion
object
class VolumeAttachmentFields(_prefix: Chunk[String])
case class VolumeAttachmentSource(inlineVolumeSpec: Optional[PersistentVolumeSpec], persistentVolumeName: Optional[String])

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.

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.

Value Params
persistentVolumeName

Name of the persistent volume to attach.

Companion
object
class VolumeAttachmentSourceFields(_prefix: Chunk[String])
case class VolumeAttachmentSpec(attacher: String, nodeName: String, source: VolumeAttachmentSource)

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

Value Params
attacher

Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().

nodeName

The node that the volume should be attached to.

Companion
object
class VolumeAttachmentSpecFields(_prefix: Chunk[String])
case class VolumeAttachmentStatus(attachError: Optional[VolumeError], attached: Boolean, attachmentMetadata: Optional[Map[String, String]], detachError: Optional[VolumeError])

VolumeAttachmentStatus is the status of a VolumeAttachment request.

VolumeAttachmentStatus is the status of a VolumeAttachment request.

Value Params
attached

Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

attachmentMetadata

Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Companion
object
class VolumeAttachmentStatusFields(_prefix: Chunk[String])
case class VolumeError(message: Optional[String], time: Optional[Time])

VolumeError captures an error encountered during a volume operation.

VolumeError captures an error encountered during a volume operation.

Value Params
message

String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.

Companion
object
Companion
class
class VolumeErrorFields(_prefix: Chunk[String])