From 49bcb47a77b476fa0aeaf264481b5f3c8c8e4374 Mon Sep 17 00:00:00 2001 From: shaikrasheed99 Date: Mon, 16 Sep 2024 15:47:37 +0530 Subject: [PATCH] [Notification-service] Add. Github ci cd environment configs --- .../main/resources/application-github-ci-cd.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 notification-service/src/main/resources/application-github-ci-cd.yaml diff --git a/notification-service/src/main/resources/application-github-ci-cd.yaml b/notification-service/src/main/resources/application-github-ci-cd.yaml new file mode 100644 index 0000000..e6b9de8 --- /dev/null +++ b/notification-service/src/main/resources/application-github-ci-cd.yaml @@ -0,0 +1,13 @@ +spring.config.activate.on-profile: github-ci-cd + +spring: + datasource: + url: jdbc:postgresql://${DB_HOST}:${DB_PORT}/notifications + username: ${DB_USERNAME} + password: ${DB_PASSWORD} + kafka: + consumer: + bootstrap-servers: ${KAFKA_BROKER_URL} + +eureka.client.enabled: false +spring.cloud.loadbalancer.enabled: false