From 5a2f937005b02593c8903df11de393ac48bdaeb6 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Thu, 18 Jan 2024 15:25:56 +0100 Subject: [PATCH 1/3] [PAGOPA-1399] ci: Update ingress --- helm/values-dev.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 5943aae..c29f2d4 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -32,6 +32,10 @@ microservice-chart: host: "weudev.gps.internal.dev.platform.pagopa.it" path: /pagopa-gpd-upload/(.*) servicePort: 8080 + proxyBodySize: 5m + annotations: { + nginx.ingress.kubernetes.io/proxy-read-timeout: '130' + } serviceAccount: create: false annotations: {} From f4d529fdf15f6edcbd8023ff9b488992b6aa788e Mon Sep 17 00:00:00 2001 From: pagopa-github-bot Date: Thu, 18 Jan 2024 14:30:33 +0000 Subject: [PATCH 2/3] Bump to version 0.1.2-10-PAGOPA-1399-infra-ingress [skip ci] --- helm/Chart.yaml | 4 ++-- helm/values-dev.yaml | 6 ++---- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- openapi/openapi.json | 2 +- pom.xml | 2 +- 6 files changed, 8 insertions(+), 10 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index f67b2b9..45f5521 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: pagopa-gpd-upload description: Microservice that handles file upload of massive debt positions JSON object type: application -version: 0.29.0 -appVersion: 0.1.2-9-PAGOPA-1449 +version: 0.30.0 +appVersion: 0.1.2-10-PAGOPA-1399-infra-ingress dependencies: - name: microservice-chart version: 2.8.0 diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index c29f2d4..ae36cee 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.2-9-PAGOPA-1449" + tag: "0.1.2-10-PAGOPA-1399-infra-ingress" pullPolicy: Always livenessProbe: httpGet: @@ -33,9 +33,7 @@ microservice-chart: path: /pagopa-gpd-upload/(.*) servicePort: 8080 proxyBodySize: 5m - annotations: { - nginx.ingress.kubernetes.io/proxy-read-timeout: '130' - } + annotations: {nginx.ingress.kubernetes.io/proxy-read-timeout: '130'} serviceAccount: create: false annotations: {} diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index ed4473c..0a2142f 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/yourname # TODO - tag: "0.1.2-9-PAGOPA-1449" + tag: "0.1.2-10-PAGOPA-1399-infra-ingress" pullPolicy: Always livenessProbe: httpGet: diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index e60f28b..2d39213 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -4,7 +4,7 @@ microservice-chart: fullnameOverride: "" image: repository: ghcr.io/pagopa/pagopa-gpd-upload - tag: "0.1.2-9-PAGOPA-1449" + tag: "0.1.2-10-PAGOPA-1399-infra-ingress" pullPolicy: Always livenessProbe: httpGet: diff --git a/openapi/openapi.json b/openapi/openapi.json index 95abda2..49e392a 100644 --- a/openapi/openapi.json +++ b/openapi/openapi.json @@ -1,5 +1,5 @@ { "info": { - "version": "0.1.2-9-PAGOPA-1449" + "version": "0.1.2-10-PAGOPA-1399-infra-ingress" } } diff --git a/pom.xml b/pom.xml index e1441ce..f89b49f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 it.gov.pagopa.gpd.upload pagopa-gpd-upload - 0.1.2-9-PAGOPA-1449 + 0.1.2-10-PAGOPA-1399-infra-ingress ${packaging} From 87c3174813b4e276d94cbec11f63489167089461 Mon Sep 17 00:00:00 2001 From: AngeloCaporaso Date: Thu, 18 Jan 2024 15:52:15 +0100 Subject: [PATCH 3/3] [PAGOPA-1399] ci: Update ingress #2 --- helm/values-dev.yaml | 4 ++++ helm/values-prod.yaml | 8 ++++++++ helm/values-uat.yaml | 8 ++++++++ 3 files changed, 20 insertions(+) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index ae36cee..d9f2626 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -104,6 +104,10 @@ microservice-chart: create: false ingress: create: true + proxyBodySize: 5m + annotations: { + nginx.ingress.kubernetes.io/proxy-read-timeout: '130' + } canary: type: header headerName: X-Canary diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 0a2142f..ef58b76 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -32,6 +32,10 @@ microservice-chart: host: "your.host" # TODO: set the host path: /your-path-here/(.*) # TODO: set your path servicePort: 8080 + proxyBodySize: 5m + annotations: { + nginx.ingress.kubernetes.io/proxy-read-timeout: '130' + } serviceAccount: create: false annotations: {} @@ -97,6 +101,10 @@ microservice-chart: create: false ingress: create: true + proxyBodySize: 5m + annotations: { + nginx.ingress.kubernetes.io/proxy-read-timeout: '130' + } canary: type: header headerName: X-Canary diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 2d39213..d669300 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -32,6 +32,10 @@ microservice-chart: host: "weuuat.gps.internal.uat.platform.pagopa.it" path: /pagopa-gpd-upload/(.*) servicePort: 8080 + proxyBodySize: 5m + annotations: { + nginx.ingress.kubernetes.io/proxy-read-timeout: '130' + } serviceAccount: create: false annotations: {} @@ -102,6 +106,10 @@ microservice-chart: create: false ingress: create: true + proxyBodySize: 5m + annotations: { + nginx.ingress.kubernetes.io/proxy-read-timeout: '130' + } canary: type: header headerName: X-Canary