From 8f68aa17534e825a787629149fb27cf9875794bb Mon Sep 17 00:00:00 2001 From: jaredb96 Date: Thu, 11 Jul 2024 17:59:22 -0400 Subject: [PATCH 1/3] Add 2024_q1 to config. --- hmda-quarterly-data-service/src/main/resources/application.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hmda-quarterly-data-service/src/main/resources/application.conf b/hmda-quarterly-data-service/src/main/resources/application.conf index bce152c48b..0070158399 100644 --- a/hmda-quarterly-data-service/src/main/resources/application.conf +++ b/hmda-quarterly-data-service/src/main/resources/application.conf @@ -15,7 +15,7 @@ db { mv { periods_annual: "2018,2019,2020,2021,2022,2023" periods_annual: ${?PERIODS_ANNUAL} - periods_with_quarter: "2018,2019,2020,2021,2022,2023" + periods_with_quarter: "2018,2019,2020,2021,2022,2023,2024_q1" periods_with_quarter: ${?PERIODS_QUARTER} suffix_home_purchase: "purpose_p" suffix_home_purchase: ${?SUFFIX_HOME_PURCHASE} From df837fa3d99c8094fa48941d46377f8c8da7e8f3 Mon Sep 17 00:00:00 2001 From: jaredb96 Date: Fri, 12 Jul 2024 09:54:13 -0400 Subject: [PATCH 2/3] Add 2024 to mv config. --- .../templates/quarterly-mv-configmap.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml b/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml index 4b8a4d999d..a88a152837 100644 --- a/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml +++ b/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml @@ -3,11 +3,11 @@ kind: ConfigMap metadata: name: {{ include "hmda-quarterly-data-service.fullname" . }}-mv-configmap data: - APP_VOL: applications_volume + APP_VOL: app_vol ALL_APP_VOL: all_applications_volume - PERIODS_ANNUAL: 2018,2019,2020,2021,2022 + PERIODS_ANNUAL: 2018,2019,2020,2021,2022,2023 CRED_SCORE_BY_LOAN: median_credit_score_by_loan_type - PERIODS_WITH_QUARTER: 2018,2019,2020,2021,2022,2023_q1,2023_q2,2023_q3 + PERIODS_WITH_QUARTER: 2018,2019,2020,2021,2022,2023,2024_q1 CRED_SCORE_BY_RE: median_credit_score_by_loan_by_race CLTV_BY_LOAN: median_cltv_by_loan_type CLTV_BY_RE: median_cltv_by_race From a0484c877ee6e82e30faa3a5b04da15242f5fd03 Mon Sep 17 00:00:00 2001 From: jaredb96 Date: Fri, 12 Jul 2024 09:58:24 -0400 Subject: [PATCH 3/3] Fix mv views. --- .../templates/quarterly-mv-configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml b/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml index a88a152837..74bf3add23 100644 --- a/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml +++ b/kubernetes/hmda-quarterly-data-service/templates/quarterly-mv-configmap.yaml @@ -4,7 +4,7 @@ metadata: name: {{ include "hmda-quarterly-data-service.fullname" . }}-mv-configmap data: APP_VOL: app_vol - ALL_APP_VOL: all_applications_volume + ALL_APP_VOL: all_app_vol PERIODS_ANNUAL: 2018,2019,2020,2021,2022,2023 CRED_SCORE_BY_LOAN: median_credit_score_by_loan_type PERIODS_WITH_QUARTER: 2018,2019,2020,2021,2022,2023,2024_q1