VolumeMountResponse

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

The properties of the volume mount.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The path within the container where the volume should be mounted. Must not contain colon (:).

Link copied to clipboard

The name of the volume mount.

Link copied to clipboard
val readOnly: Boolean? = null

The flag indicating whether the volume mount is read-only.