diff options
author | Smokowski, Steve (ss835w) <ss835w@us.att.com> | 2018-08-01 14:32:39 -0400 |
---|---|---|
committer | Smokowski, Steve (ss835w) <ss835w@us.att.com> | 2018-08-01 14:56:10 -0400 |
commit | f6462d74efe1a972029477026f2abc4447d34478 (patch) | |
tree | 0022722dfc557dccdc38690e000e82aa18d15fc4 /volumes/mso/configuration/catalog-db | |
parent | 0e2906f77008a7406b0cbc1700009e54a18889e3 (diff) |
Fix JDBC endpoint
Issue-ID: SO-708
Change-Id: Ie55f0ef8113677551fc591d399e5ef8863fde112
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
Diffstat (limited to 'volumes/mso/configuration/catalog-db')
-rw-r--r-- | volumes/mso/configuration/catalog-db/override-onapheat.yaml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/volumes/mso/configuration/catalog-db/override-onapheat.yaml b/volumes/mso/configuration/catalog-db/override-onapheat.yaml new file mode 100644 index 0000000..d5e6c93 --- /dev/null +++ b/volumes/mso/configuration/catalog-db/override-onapheat.yaml @@ -0,0 +1,45 @@ +server: + port: 8080 + tomcat: + max-threads: 50 +ssl-enable: false +mso: + logPath: logs + site-name: onapheat +spring: + datasource: + url: jdbc:mariadb://mariadb:3306/requestdb + username: so + password: so123 + driver-class-name: org.mariadb.jdbc.Driver + initialize: false + initialization-mode: never + jpa: + generate-ddl: false + show-sql: false + hibernate: + ddl-auto: validate + naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy + enable-lazy-load-no-trans: true + database-platform: org.hibernate.dialect.MySQL5InnoDBDialect + security: + usercredentials: + - + username: bpel + password: '$2b$10$byoF5q.VngZd8nj63q2Rm.bbAGUQrNG3DliPtc5l9nJIbXpXyCfrG' + role: BPEL-Client + - + username: mso_admin + password: '$2b$10$byoF5q.VngZd8nj63q2Rm.bbAGUQrNG3DliPtc5l9nJIbXpXyCfrG' + role: ACTUATOR + +#Actuator +management: + context-path: /manage + +flyway: + baseline-on-migrate: true + url: jdbc:mariadb:///mariadb:3306/requestdb + user: so + password: so123 +
\ No newline at end of file |