fix(config): align all infrastructure addresses with dev branch

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>
This commit is contained in:
Дмитрий Соловьев
2026-06-01 10:15:39 +03:00
parent 0ec8c304b4
commit ed33c3c834
10 changed files with 32 additions and 28 deletions
@@ -48,8 +48,8 @@ class WebConfig : WebMvcConfigurer {
.allowedOrigins(
"http://localhost:3000",
"http://localhost:8080",
"http://192.168.1.8:7008",
"http://192.168.1.8:8080"
"http://192.168.60.68:7008",
"http://192.168.60.68:8080"
)
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH")
.allowedHeaders("*")
@@ -66,7 +66,7 @@ class WebConfig : WebMvcConfigurer {
// Разрешенные origin'ы
allowedOriginPatterns = listOf(
"http://localhost:*",
"http://192.168.1.8:*"
"http://192.168.60.68:*"
)
// Разрешенные заголовки
allowedHeaders = listOf(