Group Init Container
data class GroupInitContainer(val commands: List<String>? = null, val environmentVariables: Map<String, String>? = null, val image: String, val name: String, val secureEnvironmentVariables: Map<String, String>? = null, val securities: List<GroupInitContainerSecurity>? = null, val volumes: List<GroupInitContainerVolume>? = 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.