Can not fetch values from remote spring config from spring boot client in Kubernetes
问题 Here's my bootstrap.yml of my client spring: cloud: config: enabled: true uri: http://localhost:8888 label: master spring.application: name: microservices-client spring.profiles: active: dev Here's my spring config server bootstrap.yml spring: application: name: microservices-client profiles: active: dev cloud: config: uri: http://localhost:8888 And here's my spring config application.yml server: port: 8888 spring: cloud: config: server: git: uri: ssh://git@riscm.company.com/sem/some_repo.git