3

クラウド構成サーバーがプロパティ ファイルを返していましたが、次のエラーが表示されます。これを修正する方法を教えてください。

これは、重要なクラウド ファウンドリ環境にデプロイされます。

{
"timestamp": 1464375520539
"status": 404
"error": "Not Found"
"exception": "org.springframework.cloud.config.server.environment.NoSuchLabelException"
"message": "No such label: master"
"path": "/couchbase-data/dev"
}

アプリケーション.yml

---
spring:
  cloud:
    config:
      server:
        git:
          uri: https://github.company.com/username/ordering-properties
          username: username
          password: "{cipher}03f0ac5cc43d913bbd45155f852d1e5c88542878491a1fc89185feea93a40084"
          search-paths: couchbase-data

security:
  basic:
    enabled: true
  user:
    name: ordering_config
    password: "{cipher}dc56acf65f93b5485c87de1a9965e76a2d0b642a0839027deffdbc35f922746f"

マニフェスト.yml

 ---
    name: orderingconfigserver
    memory: 2048M
    instances: 1
    timeout: 180
    env:
      ENCRYPT_KEY: ORDERING

アプリをデプロイした後、エンドポイントへの最初のヒットで次のエラーが返されます。

{
"timestamp": 1464377154415
"status": 500
"error": "Internal Server Error"
"exception": "java.lang.IllegalStateException"
"message": "Cannot clone or checkout repository"
"path": "/couchbase-data/dev"
}
4

1 に答える 1