| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- spring:
- crss-stl:
- datasource:
- jdbcUrl: jdbc:postgresql://192.168.233.9:5432/crss_settlement
- username: crss_settlement
- password: crss_settlement
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- # for removal after ITER 7 stl testing
- crss-meterprocess:
- datasource:
- jdbcUrl: jdbc:postgresql://192.168.233.9:5432/stl_crss_meterprocess
- username: crss_settlement
- password: crss_settlement
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://192.168.233.9:5432/stl_crss_meterprocess
- username: crss_settlement
- password: crss_settlement
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-metering:
- datasource:
- jdbcUrl: jdbc:postgresql://192.168.233.9:5432/stl_crss_metering
- username: crss_settlement
- password: crss_settlement
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:postgresql://192.168.233.9:5432/stl_crss_nmms
- username: crss_settlement
- password: crss_settlement
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://192.168.233.9:5432/crss_dataflow
- username: crss_dataflow
- password: crss_dataflow
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- profiles:
- include: mesos
- cloud:
- deployer:
- mesos:
- chronos:
- apiEndpoint: http://master.mesos/service/chronos/v1
- memory: 2048
- task:
- initialize:
- enable: false
- batch:
- initializer:
- enabled: false
- job:
- enabled: true
- jpa:
- show-sql: false
- generate-ddl: true
- properties:
- hibernate:
- generate_statistics: false
- dialect: org.hibernate.dialect.PostgreSQL81Dialect
- ddl-auto: none
- hbm2ddl:
- auto: none
- redis:
- host: redis.marathon.l4lb.thisdcos.directory
- port: 6379
- logging:
- level:
- com.pemc.crss.settlement.task.calculation: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.hibernate.stat: debug
|