ServiceTemplateSpecContainerEnv

data class ServiceTemplateSpecContainerEnv(val name: String? = null, val value: String? = null, val valueFrom: ServiceTemplateSpecContainerEnvValueFrom? = null)

Constructors

Link copied to clipboard
fun ServiceTemplateSpecContainerEnv(name: String? = null, value: String? = null, valueFrom: ServiceTemplateSpecContainerEnvValueFrom? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

Name of the environment variable.

Link copied to clipboard
val value: String? = null

Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any route environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".

Link copied to clipboard

Source for the environment variable's value. Only supports secret_key_ref. Structure is documented below.