VolumeMountArgs

data class VolumeMountArgs(val mountPath: Output<String>, val name: Output<String>, val readOnly: Output<Boolean>? = null) : ConvertibleToJava<VolumeMountArgs>

The properties of the volume mount.

Constructors

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

Properties

Link copied to clipboard
val mountPath: Output<String>

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

Link copied to clipboard
val name: Output<String>

The name of the volume mount.

Link copied to clipboard
val readOnly: Output<Boolean>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): VolumeMountArgs