VolumeMountStatus

data class VolumeMountStatus(val mountPath: String, val name: String, val readOnly: Boolean? = null, val recursiveReadOnly: String? = null)

VolumeMountStatus shows status of volume mounts.

Constructors

Link copied to clipboard
constructor(mountPath: String, name: String, readOnly: Boolean? = null, recursiveReadOnly: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

MountPath corresponds to the original VolumeMount.

Link copied to clipboard

Name corresponds to the name of the original VolumeMount.

Link copied to clipboard
val readOnly: Boolean? = null

ReadOnly corresponds to the original VolumeMount.

Link copied to clipboard

RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.