JobDefinitionEksVolume

data class JobDefinitionEksVolume(val emptyDir: JobDefinitionEksEmptyDir? = null, val hostPath: JobDefinitionEksHostPath? = null, val name: String, val secret: JobDefinitionEksSecret? = null)

Constructors

Link copied to clipboard
constructor(emptyDir: JobDefinitionEksEmptyDir? = null, hostPath: JobDefinitionEksHostPath? = null, name: String, secret: JobDefinitionEksSecret? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies the configuration of a Kubernetes emptyDir volume. For more information, see emptyDir in the Kubernetes documentation .

Link copied to clipboard

Specifies the configuration of a Kubernetes hostPath volume. For more information, see hostPath in the Kubernetes documentation .

Link copied to clipboard

The name of the volume. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation .

Link copied to clipboard

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation .