diff options
author | grabinsk <maciej.grabinski@nokia.com> | 2019-06-04 15:18:44 +0200 |
---|---|---|
committer | grabinsk <maciej.grabinski@nokia.com> | 2019-06-14 12:34:51 +0200 |
commit | 4117c9fd7fcea895e18872e0d541e0f14a9a41b9 (patch) | |
tree | 7ac60bf14cd679a0d1268d3c9cb208018357dfe5 /prh-app-server/src/main/resources/bootstrap.yaml | |
parent | 44b70902a263f9dcc73e1910377792097194f1d5 (diff) |
fetching configuration from CBS at application bootstrap
Change-Id: Ibaa56c38b87fc8b8cfa858f74b7bc201bd507b37
Issue-ID: DCAEGEN2-1544
Signed-off-by: grabinsk <maciej.grabinski@nokia.com>
Diffstat (limited to 'prh-app-server/src/main/resources/bootstrap.yaml')
-rw-r--r-- | prh-app-server/src/main/resources/bootstrap.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/prh-app-server/src/main/resources/bootstrap.yaml b/prh-app-server/src/main/resources/bootstrap.yaml new file mode 100644 index 00000000..176c6bec --- /dev/null +++ b/prh-app-server/src/main/resources/bootstrap.yaml @@ -0,0 +1,23 @@ +spring: + application: + name: dcae-prh + + cloud: + config: + enabled: false + + +logging: + level: + org.springframework.boot.SpringApplication: warn + org.springframework.context.support.PostProcessorRegistrationDelegate: warn + +cbs: + hostname: cbs + port: 10000 + app-name: dcae-prh + updates-interval: 5m + fetch-retries: + max-attempts: 10 + first-backoff: 3s + max-backoff: 15s
\ No newline at end of file |