Externalised Configuration
Posted on November 25, 2018
by Ernesto Garbarino
Externalised configuration libraries help define configuration outside an application’s code base so that it can be injected externally.
Spring Cloud Config: Spring Cloud Config includes both a configuration server and client libraries to obtain the configuration from the server and inject it into variables.
Java Properties: The default Java properties mechanism can be used to load externalised configuration that has been mounted in a virtual file system as provided by Kubernetes’ ConfigMap service.
Ernesto Garbarino