VolumeMountResponse

data class VolumeMountResponse(val mountPath: String, val name: String, val readOnly: Boolean, val subPath: String)

VolumeMount describes a mounting of a Volume within a container.

Constructors

Link copied to clipboard
fun VolumeMountResponse(mountPath: String, name: String, readOnly: Boolean, subPath: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Path within the container at which the volume should be mounted. Must not contain ':'.

Link copied to clipboard

The name of the volume. There must be a corresponding Volume with the same name.

Link copied to clipboard

Only true is accepted for Secret Volumes. Defaults to true for Secrets Volumes.

Link copied to clipboard

Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).