Created
September 10, 2018 03:37
-
-
Save lzimd/5aa282bf72e9d26bb69e2d04f30dd5dd to your computer and use it in GitHub Desktop.
spring cloud discovery
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
spring.cloud.zookeeper.discovery.enabled=true | |
spring.cloud.zookeeper.discovery.register=true | |
spring.cloud.zookeeper.discovery.preferIpAddress=true | |
spring.cloud.zookeeper.connectString=127.0.0.1:2181 | |
spring.cloud.inetutils.ignoredInterfaces[0]=docker0 | |
spring.cloud.inetutils.ignoredInterfaces[1]=veth.* | |
spring.cloud.inetutils.ignoredInterfaces[2]=VMware.* | |
spring.cloud.inetutils.ignoredInterfaces[3]=Npcap.* |
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
spring: | |
cloud: | |
zookeeper: | |
connect-string: 127.0.0.1:2181 | |
discovery: | |
enabled: true | |
register: true | |
preferIpAddress: true | |
inetutils: | |
ignoredInterfaces: | |
- docker0 | |
- veth.* | |
- VMware.* | |
- Npcap.* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment