InitContainerDefinitionResponse

data class InitContainerDefinitionResponse(val command: List<String>? = null, val environmentVariables: List<EnvironmentVariableResponse>? = null, val image: String? = null, val instanceView: InitContainerPropertiesDefinitionResponseInstanceView, val name: String, val securityContext: SecurityContextDefinitionResponse? = null, val volumeMounts: List<VolumeMountResponse>? = null)

The init container definition.

Constructors

Link copied to clipboard
constructor(command: List<String>? = null, environmentVariables: List<EnvironmentVariableResponse>? = null, image: String? = null, instanceView: InitContainerPropertiesDefinitionResponseInstanceView, name: String, securityContext: SecurityContextDefinitionResponse? = null, volumeMounts: List<VolumeMountResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

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

The command to execute within the init container in exec form.

Link copied to clipboard

The environment variables to set in the init container.

Link copied to clipboard
val image: String? = null

The image of the init container.

Link copied to clipboard

The instance view of the init container. Only valid in response.

Link copied to clipboard

The name for the init container.

Link copied to clipboard

The container security properties.

Link copied to clipboard

The volume mounts available to the init container.