EnvFromSource

data class EnvFromSource(val configMapRef: ConfigMapEnvSource? = null, val prefix: String? = null, val secretRef: SecretEnvSource? = null)

EnvFromSource represents the source of a set of ConfigMaps or Secrets

Constructors

Link copied to clipboard
constructor(configMapRef: ConfigMapEnvSource? = null, prefix: String? = null, secretRef: SecretEnvSource? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The ConfigMap to select from

Link copied to clipboard
val prefix: String? = null

Optional text to prepend to the name of each environment variable. Must be a C_IDENTIFIER.

Link copied to clipboard

The Secret to select from