From 5b30ba9c523bb7ee44d29cec49f583d3b1758a6f Mon Sep 17 00:00:00 2001 From: antonioT90 <34568575+antonioT90@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:51:36 +0100 Subject: [PATCH 1/2] fix: fix-image-name (#3) --- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- helm/values.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 54229d4..87c8334 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -1,6 +1,6 @@ microservice-chart: image: - repository: p4paditncorecommonacr.azurecr.io/templatepaymentsjavarepository + repository: p4paditncorecommonacr.azurecr.io/p4paorganization tag: latest pullPolicy: Always diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 4bee648..2315ee3 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -1,6 +1,6 @@ microservice-chart: image: - repository: p4papitncorecommonacr.azurecr.io/templatepaymentsjavarepository + repository: p4papitncorecommonacr.azurecr.io/p4paorganization tag: latest pullPolicy: Always diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 05c9d0e..45d3a8a 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -1,6 +1,6 @@ microservice-chart: image: - repository: p4pauitncorecommonacr.azurecr.io/templatepaymentsjavarepository + repository: p4pauitncorecommonacr.azurecr.io/p4paorganization tag: latest pullPolicy: Always diff --git a/helm/values.yaml b/helm/values.yaml index d6396f8..46872c2 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -29,7 +29,7 @@ microservice-chart: ingress: create: true - path: /templatepaymentsjavarepository/(.*) + path: /p4paorganization/(.*) serviceAccount: create: false @@ -55,7 +55,7 @@ microservice-chart: key: applicationinsights.json envConfig: - APPLICATIONINSIGHTS_ROLE_NAME: "templatepaymentsjavarepository" + APPLICATIONINSIGHTS_ROLE_NAME: "p4pa-organization" APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL: "OFF" APPLICATIONINSIGHTS_INSTRUMENTATION_MICROMETER_ENABLED: "false" APPLICATIONINSIGHTS_PREVIEW_PROFILER_ENABLED: "false" From 87c6ee70ec214e9fb0f114d1489b787e2df52145 Mon Sep 17 00:00:00 2001 From: antonioT90 <34568575+antonioT90@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:01:02 +0100 Subject: [PATCH 2/2] fix: fix main class name on run configuration (#4) --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7cfe23b..62a5fc6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -92,7 +92,7 @@ configure { } springBoot { - mainClass.value("it.gov.pagopa.template.TemplateApplication") + mainClass.value("it.gov.pagopa.pu.organization.OrganizationApplication") } openApiGenerate {