From 8ac4afa195dc68ae45ee15b3e52aad6d4732210f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=A1=D0=BE?= =?UTF-8?q?=D0=BB=D0=BE=D0=B2=D1=8C=D0=B5=D0=B2?= Date: Mon, 8 Jun 2026 14:45:50 +0300 Subject: [PATCH] =?UTF-8?q?config:=20=D0=B0=D0=B4=D1=80=D0=B5=D1=81=D0=B0?= =?UTF-8?q?=20=D0=B8=D0=BD=D1=84=D1=80=D0=B0=D1=81=D1=82=D1=80=D1=83=D0=BA?= =?UTF-8?q?=D1=82=D1=83=D1=80=D1=8B=20=D0=BD=D0=B0=20localhost=20(applicat?= =?UTF-8?q?ion-dev/docker-local,=20create=5Fpcp=5Fdatabases)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config-repo/application-dev.yaml | 8 ++++---- config-repo/application-docker-local.yaml | 2 +- create_pcp_databases.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config-repo/application-dev.yaml b/config-repo/application-dev.yaml index 288ae0c..947eea6 100644 --- a/config-repo/application-dev.yaml +++ b/config-repo/application-dev.yaml @@ -1,16 +1,16 @@ # TODO before merge request: вернуть старые адреса окружения. -# pcp.infra.postgres.host: 192.168.60.146 +# pcp.infra.postgres.host: localhost pcp: infra: postgres: - host: 192.168.60.146 + host: localhost port: 35400 kafka: - host: 192.168.60.146 + host: localhost port: 19092 network: - host: 192.168.60.146 + host: localhost ports: config: 8888 diff --git a/config-repo/application-docker-local.yaml b/config-repo/application-docker-local.yaml index eb1019f..7b479db 100644 --- a/config-repo/application-docker-local.yaml +++ b/config-repo/application-docker-local.yaml @@ -56,7 +56,7 @@ spring: camunda: client: enabled: ${CAMUNDA_CLIENT_ENABLED:false} - grpc-address: ${CAMUNDA_GRPC_ADDRESS:http://192.168.60.146:26500} + grpc-address: ${CAMUNDA_GRPC_ADDRESS:http://localhost:26500} auth: method: none prefer-rest-over-grpc: false diff --git a/create_pcp_databases.sh b/create_pcp_databases.sh index cf62fea..d257b3c 100755 --- a/create_pcp_databases.sh +++ b/create_pcp_databases.sh @@ -3,7 +3,7 @@ set -euo pipefail # PostgreSQL connection settings. Override via env if needed: # PGHOST=... PGPORT=... PGUSER=... PGPASSWORD=... ./create_pcp_databases.sh -PGHOST="${PGHOST:-192.168.60.146}" +PGHOST="${PGHOST:-localhost}" PGPORT="${PGPORT:-5432}" PGUSER="${PGUSER:-postgres}" PGPASSWORD="${PGPASSWORD:-password}"