私はgitサーバからコンフィグレーションを消費する単純なSpring Cloudコンフィグレーションサーバを持っています。スプリングコンフィグサーバ - このようなラベルはありません:マスター
CONFIGSERVERのbootstrap.yml:
spring:
application:
name: config-service
cloud:
config:
server:
git:
uri: ssh://[email protected]:myport/myrepo.git
searchPaths: "configurations/{application}/{profile}"
server:
port: 8888
私はローカルにCONFIGSERVERを展開するとき、私はhttp://localhost:8888/myapp/test
から設定を取得することができます。しかし、ConfigServerをテストサーバーにデプロイすると、http://testserverip:8888/myapp/test
になるとNo such label: master
がスローされます。
ご協力いただければ幸いです。
ログには何が表示されますか?おそらく、テストシステムからgit repoへの設定上の問題や、認証や認可がありますか? – spencergibb