diff options
author | 2021-07-05 10:36:42 +0100 | |
---|---|---|
committer | 2021-07-09 17:54:37 +0100 | |
commit | d5fb4e04527f47f78e9116e3573c21dd75ff8abb (patch) | |
tree | d9b784ef679123c199e1e7aea5220b42f1a9cfea /runtime-controlloop/src/main/resources/application.yaml | |
parent | 8c802e778db60e269e2e66c7a6609bf905f6ad79 (diff) |
Convert controlloop runtime to springboot framework
Issue-ID: POLICY-3355
Change-Id: Ie1667b749eed28b7e526cd4695f45d8ed736c4e7
Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'runtime-controlloop/src/main/resources/application.yaml')
-rw-r--r-- | runtime-controlloop/src/main/resources/application.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/runtime-controlloop/src/main/resources/application.yaml b/runtime-controlloop/src/main/resources/application.yaml new file mode 100644 index 000000000..af9966d40 --- /dev/null +++ b/runtime-controlloop/src/main/resources/application.yaml @@ -0,0 +1,22 @@ +spring: + security: + user: + name: healthcheck + password: zb!XztG34 + http: + converters: + preferred-json-mapper: gson + +security: + enable-csrf: false + +server: + port: 6969 + servlet: + context-path: /onap/controlloop + error: + path: /error + + +runtime: + file: src/main/resources/parameters/ClRuntimeParameters.json |