ServiceTemplateSpecVolume

data class ServiceTemplateSpecVolume(val csi: ServiceTemplateSpecVolumeCsi? = null, val emptyDir: ServiceTemplateSpecVolumeEmptyDir? = null, val name: String, val nfs: ServiceTemplateSpecVolumeNfs? = null, val secret: ServiceTemplateSpecVolumeSecret? = null)

Constructors

Link copied to clipboard
constructor(csi: ServiceTemplateSpecVolumeCsi? = null, emptyDir: ServiceTemplateSpecVolumeEmptyDir? = null, name: String, nfs: ServiceTemplateSpecVolumeNfs? = null, secret: ServiceTemplateSpecVolumeSecret? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A filesystem specified by the Container Storage Interface (CSI). Structure is documented below.

Link copied to clipboard

Ephemeral storage which can be backed by real disks (HD, SSD), network storage or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is ephemeral in the sense that when the sandbox is taken down, the data is destroyed with it (it does not persist across sandbox runs). Structure is documented below.

Link copied to clipboard

Volume's name.

Link copied to clipboard

A filesystem backed by a Network File System share. This filesystem requires the run.googleapis.com/execution-environment annotation to be unset or set to "gen2" Structure is documented below.

Link copied to clipboard

The secret's value will be presented as the content of a file whose name is defined in the item path. If no items are defined, the name of the file is the secret_name. Structure is documented below.