Last active
July 19, 2024 18:32
-
-
Save emrekgn/93fab341cbe29ea54e866e51001a5f5c to your computer and use it in GitHub Desktop.
Spring Cloud Config Server and Client example configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# application.yml file of the config server (Spring Cloud Config Server) | |
server: | |
port: 9999 # or whatever | |
spring: | |
application: | |
name: config-service | |
cloud: | |
config: | |
server: | |
git: | |
#uri: file:///path/to/your/config/dir | |
uri: [email protected]:foo/bar.git | |
# This allows us to use client service names (i.e. application names) as sub-directories in the config repository. See below example. | |
search-paths: '{application}' | |
clone-on-start: true | |
delete-untracked-branches: true | |
ignore-local-ssh-settings: false | |
refresh-rate: 300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# application.yml file of the client service (Spring Cloud Config Client) | |
spring: | |
application: | |
name: client-service | |
config: | |
import: configserver:http://localhost:9999 | |
cloud: | |
config: | |
fail-fast: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An example of directory structure of a config repository: | |
. | |
├── application-dev.yml | |
├── application-prod.yml | |
├── application.yml | |
├── client-service | |
│ └── application.yml | |
│ └── application-anotherprofile.yml | |
├── another-client-service | |
└── application.yml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment