Package io.quarkus.kubernetes.deployment
Interface EnvVarsConfig
public interface EnvVarsConfig
The configuration specifying which environment variables to inject into the application's container.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionThe optional list of ConfigMap names to load environment variables from.fields()The map associating environment variable names to their associated field references they take their value from.mapping()The map recording the configuration of environment variable taking their value from resource (Secret or ConfigMap) keysprefixes()The map recording the configuration of environment variable prefix.secrets()The optional list of Secret names to load environment variables from.vars()The map associating environment name to its associated value.
-
Method Details
-
secrets
The optional list of Secret names to load environment variables from. -
configmaps
The optional list of ConfigMap names to load environment variables from. -
fields
The map associating environment variable names to their associated field references they take their value from. -
vars
Map<String,EnvVarsConfig.Value> vars()The map associating environment name to its associated value. -
mapping
Map<String,EnvVarFromKeyConfig> mapping()The map recording the configuration of environment variable taking their value from resource (Secret or ConfigMap) keys -
prefixes
The map recording the configuration of environment variable prefix.
-