From: puthuparambil.aditya Date: Fri, 28 Jan 2022 13:22:33 +0000 (+0000) Subject: Database port not configurable through env variable X-Git-Tag: 3.0.0~36^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=cps.git;a=commitdiff_plain;h=73d588691b67c4e3981a32190adfbcd09e889f23 Database port not configurable through env variable Issue-ID: CPS-867 Signed-off-by: puthuparambil.aditya Change-Id: I1f5e00c6b814a5ba087ba0cc1832152b2317ad57 --- diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index d615e995c..723e2ca19 100644 --- a/cps-application/src/main/resources/application.yml +++ b/cps-application/src/main/resources/application.yml @@ -41,7 +41,7 @@ spring: dialect: org.hibernate.dialect.PostgreSQLDialect datasource: - url: jdbc:postgresql://${DB_HOST}:5432/cpsdb + url: jdbc:postgresql://${DB_HOST}:${DB_PORT:5432}/cpsdb username: ${DB_USERNAME} password: ${DB_PASSWORD} driverClassName: org.postgresql.Driver diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index d0a157e89..44ebd3bc6 100755 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -89,7 +89,7 @@ services: container_name: dbpostgresql image: postgres:13.2-alpine ports: - - '5432:5432' + - ${DB_PORT:-5432}:5432 environment: POSTGRES_DB: cpsdb POSTGRES_USER: ${DB_USERNAME:-cps} diff --git a/docs/release-notes.rst b/docs/release-notes.rst index d080b037f..058f6baae 100755 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -40,6 +40,7 @@ Bug Fixes - `CPS-788 `_ Yang Resource formatting is incorrect - `CPS-783 `_ Remove cm handle does not completely remove all cm handle information - `CPS-841 `_ Upgrade log4j to 2.17.1 as recommended by ONAP SECCOM + - `CPS-867 `_ Database port made configurable through env variable DB_PORT Known Limitations, Issues and Workarounds -----------------------------------------