ContainerGroupContainer

data class ContainerGroupContainer(val args: List<String>? = null, val commands: List<String>? = null, val cpu: Double? = null, val environmentVars: List<ContainerGroupContainerEnvironmentVar>? = null, val gpu: Int? = null, val image: String, val imagePullPolicy: String? = null, val livenessProbes: List<ContainerGroupContainerLivenessProbe>? = null, val memory: Double? = null, val name: String, val ports: List<ContainerGroupContainerPort>? = null, val readinessProbes: List<ContainerGroupContainerReadinessProbe>? = null, val ready: Boolean? = null, val restartCount: Int? = null, val volumeMounts: List<ContainerGroupContainerVolumeMount>? = null, val workingDir: String? = null)

Constructors

Link copied to clipboard
fun ContainerGroupContainer(args: List<String>? = null, commands: List<String>? = null, cpu: Double? = null, environmentVars: List<ContainerGroupContainerEnvironmentVar>? = null, gpu: Int? = null, image: String, imagePullPolicy: String? = null, livenessProbes: List<ContainerGroupContainerLivenessProbe>? = null, memory: Double? = null, name: String, ports: List<ContainerGroupContainerPort>? = null, readinessProbes: List<ContainerGroupContainerReadinessProbe>? = null, ready: Boolean? = null, restartCount: Int? = null, volumeMounts: List<ContainerGroupContainerVolumeMount>? = 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 group.

Link copied to clipboard

The structure of environmentVars.

Link copied to clipboard
val gpu: Int? = null

The number GPUs.

Link copied to clipboard

The image of the container.

Link copied to clipboard
val imagePullPolicy: String? = null

The restart policy of the image.

Link copied to clipboard

The health check of the container.

Link copied to clipboard
val memory: Double? = null

The amount of memory resources allocated to the container group.

Link copied to clipboard

The name of the volume.

Link copied to clipboard

The structure of port.

Link copied to clipboard

The health check of the container.

Link copied to clipboard
val ready: Boolean? = null
Link copied to clipboard
val restartCount: Int? = null
Link copied to clipboard

The structure of volumeMounts.

Link copied to clipboard
val workingDir: String? = null

The working directory of the container.