Group Init Container Args
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
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
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.