GroupInitContainerVolume

data class GroupInitContainerVolume(val emptyDir: Boolean? = null, val gitRepo: GroupInitContainerVolumeGitRepo? = null, val mountPath: String, val name: String, val readOnly: Boolean? = null, val secret: Map<String, String>? = null, val shareName: String? = null, val storageAccountKey: String? = null, val storageAccountName: String? = null)

Constructors

Link copied to clipboard
constructor(emptyDir: Boolean? = null, gitRepo: GroupInitContainerVolumeGitRepo? = null, mountPath: String, name: String, readOnly: Boolean? = null, secret: Map<String, String>? = null, shareName: String? = null, storageAccountKey: String? = null, storageAccountName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val emptyDir: Boolean? = null

Boolean as to whether the mounted volume should be an empty directory. Defaults to false. Changing this forces a new resource to be created.

Link copied to clipboard

A git_repo block as defined below. Changing this forces a new resource to be created.

Link copied to clipboard

The path on which this volume is to be mounted. Changing this forces a new resource to be created.

Link copied to clipboard

The name of the volume mount. Changing this forces a new resource to be created.

Link copied to clipboard
val readOnly: Boolean? = null

Specify if the volume is to be mounted as read only or not. The default value is false. Changing this forces a new resource to be created.

Link copied to clipboard
val secret: Map<String, String>? = null

A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.

Link copied to clipboard
val shareName: String? = null

The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.

Link copied to clipboard

The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.

Link copied to clipboard

The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.