GroupInitContainerArgs

data class GroupInitContainerArgs(val commands: Output<List<String>>? = null, val environmentVariables: Output<Map<String, String>>? = null, val image: Output<String>, val name: Output<String>, val secureEnvironmentVariables: Output<Map<String, String>>? = null, val securities: Output<List<GroupInitContainerSecurityArgs>>? = null, val volumes: Output<List<GroupInitContainerVolumeArgs>>? = null) : ConvertibleToJava<GroupInitContainerArgs>

Constructors

Link copied to clipboard
constructor(commands: Output<List<String>>? = null, environmentVariables: Output<Map<String, String>>? = null, image: Output<String>, name: Output<String>, secureEnvironmentVariables: Output<Map<String, String>>? = null, securities: Output<List<GroupInitContainerSecurityArgs>>? = null, volumes: Output<List<GroupInitContainerVolumeArgs>>? = null)

Properties

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

A list of commands which should be run on the container. Changing this forces a new resource to be created.

Link copied to clipboard
val environmentVariables: Output<Map<String, String>>? = null

A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.

Link copied to clipboard
val image: Output<String>

The container image name. Changing this forces a new resource to be created.

Link copied to clipboard
val name: Output<String>

Specifies the name of the Container. Changing this forces a new resource to be created.

Link copied to clipboard

A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.

Link copied to clipboard

The definition of the security context for this container as documented in the security block below. Changing this forces a new resource to be created.

Link copied to clipboard

The definition of a volume mount for this container as documented in the volume block below. Changing this forces a new resource to be created.

Functions

Link copied to clipboard
open override fun toJava(): GroupInitContainerArgs