You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using config server for many services, we share common configuration for services by calling the files with different file name prefix and then we set multiple application names, for example:
now we want a service to also be a cassandra-client, we could do the same but for various reasons we want the cassandra configuration to reside in a separate git repo, we tried by configuring the spring.cloud.config.server.git.repos with different patterns but it didn't work, config server would only load configuration from one git repo. so we actually want to combine configuration from different git repositories. or a repository url could be a list of repositories.
The text was updated successfully, but these errors were encountered:
We are using config server for many services, we share common configuration for services by calling the files with different file name prefix and then we set multiple application names, for example:
then in the service bootstrap.yml :
this works fine
now we want a service to also be a cassandra-client, we could do the same but for various reasons we want the cassandra configuration to reside in a separate git repo, we tried by configuring the spring.cloud.config.server.git.repos with different patterns but it didn't work, config server would only load configuration from one git repo. so we actually want to combine configuration from different git repositories. or a repository url could be a list of repositories.
The text was updated successfully, but these errors were encountered: