VolumeMountStatusPatch

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

VolumeMountStatus shows status of volume mounts.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val mountPath: String? = null

MountPath corresponds to the original VolumeMount.

Link copied to clipboard
val name: String? = null

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.