Container Group Init Container
data class ContainerGroupInitContainer(val args: List<String>? = null, val commands: List<String>? = null, val cpu: Double? = null, val environmentVars: List<ContainerGroupInitContainerEnvironmentVar>? = null, val gpu: Int? = null, val image: String? = null, val imagePullPolicy: String? = null, val memory: Double? = null, val name: String? = null, val ports: List<ContainerGroupInitContainerPort>? = null, val ready: Boolean? = null, val restartCount: Int? = null, val securityContexts: List<ContainerGroupInitContainerSecurityContext>? = null, val volumeMounts: List<ContainerGroupInitContainerVolumeMount>? = null, val workingDir: String? = null)
Constructors
Link copied to clipboard
constructor(args: List<String>? = null, commands: List<String>? = null, cpu: Double? = null, environmentVars: List<ContainerGroupInitContainerEnvironmentVar>? = null, gpu: Int? = null, image: String? = null, imagePullPolicy: String? = null, memory: Double? = null, name: String? = null, ports: List<ContainerGroupInitContainerPort>? = null, ready: Boolean? = null, restartCount: Int? = null, securityContexts: List<ContainerGroupInitContainerSecurityContext>? = null, volumeMounts: List<ContainerGroupInitContainerVolumeMount>? = null, workingDir: String? = null)
Properties
Link copied to clipboard
The structure of environmentVars. See environment_vars below.
Link copied to clipboard
The restart policy of the image. Default value: IfNotPresent. Valid values: Always, IfNotPresent, Never.
Link copied to clipboard
The structure of port. See ports below.
Link copied to clipboard
The number of times that the container restarted.
Link copied to clipboard
The security context of the container. See security_context below.
Link copied to clipboard
The structure of volumeMounts. See volume_mounts below.
Link copied to clipboard
The working directory of the container.