diff options
author | puthuparambil.aditya <aditya.puthuparambil@bell.ca> | 2022-01-28 13:22:33 +0000 |
---|---|---|
committer | puthuparambil.aditya <aditya.puthuparambil@bell.ca> | 2022-01-28 13:22:33 +0000 |
commit | 73d588691b67c4e3981a32190adfbcd09e889f23 (patch) | |
tree | dbce03bd635ba798bfe6d4b671d0c2bb2c1f75bf | |
parent | a5ce86d02493f141848f9d609c65883d2198894a (diff) |
Database port not configurable through env variable
Issue-ID: CPS-867
Signed-off-by: puthuparambil.aditya <aditya.puthuparambil@bell.ca>
Change-Id: I1f5e00c6b814a5ba087ba0cc1832152b2317ad57
-rw-r--r-- | cps-application/src/main/resources/application.yml | 2 | ||||
-rwxr-xr-x | docker-compose/docker-compose.yml | 2 | ||||
-rwxr-xr-x | docs/release-notes.rst | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/cps-application/src/main/resources/application.yml b/cps-application/src/main/resources/application.yml index d615e995c6..723e2ca196 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 d0a157e890..44ebd3bc69 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 d080b037f1..058f6baaeb 100755 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -40,6 +40,7 @@ Bug Fixes - `CPS-788 <https://jira.onap.org/browse/CPS-788>`_ Yang Resource formatting is incorrect - `CPS-783 <https://jira.onap.org/browse/CPS-783>`_ Remove cm handle does not completely remove all cm handle information - `CPS-841 <https://jira.onap.org/browse/CPS-841>`_ Upgrade log4j to 2.17.1 as recommended by ONAP SECCOM + - `CPS-867 <https://jira.onap.org/browse/CPS-867>`_ Database port made configurable through env variable DB_PORT Known Limitations, Issues and Workarounds ----------------------------------------- |