ed33c3c834
Replace 192.168.1.8 (local dev machine) with addresses from dev branch: - Test application.yaml files: kafka/postgres → 192.168.60.68, service URLs → localhost - pcp-complex-mission main: local profile postgres host → localhost, dev profile → 192.168.100.160:35400 - config-repo/pcp-tgu-service.yaml: camunda grpc-address → camunda.k8s.265.nstart.local:30901 - CorsFilterComponent.kt: allowed origins → 192.168.60.68 - CoverageSchemeProperties.kt: service URLs → localhost - KafkaProducerConfig.kt: bootstrap servers fallback → 192.168.100.160:19092 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
74 lines
1.3 KiB
YAML
74 lines
1.3 KiB
YAML
spring:
|
|
application:
|
|
name: tle-monitoring-service
|
|
cloud:
|
|
config:
|
|
enabled: false
|
|
kafka:
|
|
bootstrap-servers: 192.168.60.68:29092
|
|
consumer:
|
|
group-id: pcp
|
|
auto-offset-reset: earliest
|
|
template:
|
|
default-topic: pcp.tle
|
|
datasource:
|
|
driver-class-name: org.postgresql.Driver
|
|
url: jdbc:postgresql://192.168.60.68:5432/pcp_tle
|
|
username: postgres
|
|
password: password
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: validate
|
|
properties:
|
|
hibernate:
|
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
|
jdbc:
|
|
lob:
|
|
non_contextual_creation: true
|
|
flyway:
|
|
enabled: true
|
|
baseline-on-migrate: true
|
|
locations: classpath:db/migration
|
|
lifecycle.timeout-per-shutdown-phase: 40s
|
|
jackson:
|
|
default-property-inclusion: non_null
|
|
codec:
|
|
max-in-memory-size: 20MB
|
|
|
|
springdoc:
|
|
swagger-ui:
|
|
enabled: true
|
|
layout: BaseLayout
|
|
path: /swagger/ui
|
|
api-docs:
|
|
enabled: true
|
|
path: /api-docs
|
|
|
|
logging:
|
|
level:
|
|
.: ERROR
|
|
file:
|
|
name: ./logs/application.log
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: "*"
|
|
endpoint:
|
|
health:
|
|
show-details: always
|
|
info:
|
|
enabled: true
|
|
|
|
settings:
|
|
complex-mission-service: http://192.168.60.68:7002
|
|
|
|
tle:
|
|
polling:
|
|
enabled: false
|
|
timeout-seconds: 10800
|
|
|
|
server:
|
|
port: 7001
|