EciScalingConfigurationInitContainer

data class EciScalingConfigurationInitContainer(val args: List<String>? = null, val commands: List<String>? = null, val cpu: Double? = null, val environmentVars: List<EciScalingConfigurationInitContainerEnvironmentVar>? = null, val gpu: Int? = null, val image: String? = null, val imagePullPolicy: String? = null, val memory: Double? = null, val name: String? = null, val ports: List<EciScalingConfigurationInitContainerPort>? = null, val volumeMounts: List<EciScalingConfigurationInitContainerVolumeMount>? = null, val workingDir: String? = null)

Constructors

Link copied to clipboard
fun EciScalingConfigurationInitContainer(args: List<String>? = null, commands: List<String>? = null, cpu: Double? = null, environmentVars: List<EciScalingConfigurationInitContainerEnvironmentVar>? = null, gpu: Int? = null, image: String? = null, imagePullPolicy: String? = null, memory: Double? = null, name: String? = null, ports: List<EciScalingConfigurationInitContainerPort>? = null, volumeMounts: List<EciScalingConfigurationInitContainerVolumeMount>? = null, workingDir: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val args: List<String>? = null

The arguments passed to the commands.

Link copied to clipboard
val commands: List<String>? = null

The commands run by the init container.

Link copied to clipboard
val cpu: Double? = null

The amount of CPU resources allocated to the container.

Link copied to clipboard

The structure of environmentVars. See environment_vars below for details.

Link copied to clipboard
val gpu: Int? = null

The number GPUs.

Link copied to clipboard
val image: String? = null

The image of the container.

Link copied to clipboard
val imagePullPolicy: String? = null

The restart policy of the image.

Link copied to clipboard
val memory: Double? = null

The amount of memory resources allocated to the container.

Link copied to clipboard
val name: String? = null

The name of the mounted volume.

Link copied to clipboard

The structure of port. See ports below for details.

Link copied to clipboard

The structure of volumeMounts. See volume_mounts below for details.

Link copied to clipboard
val workingDir: String? = null

The working directory of the container.