From 8bb438e15c12d43b3b95702078852eb4c4dd15ea Mon Sep 17 00:00:00 2001 From: Andrea De Rinaldis Date: Thu, 19 Sep 2024 12:09:05 +0200 Subject: [PATCH 1/2] [PAGOPA-2156] fix: tuning of RPT_TIMEOUT after feedbacks received --- helm/values-dev.yaml | 14 +++++++------- helm/values-prod.yaml | 14 +++++++------- helm/values-uat.yaml | 14 +++++++------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index a5a564c0..27f20393 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -34,9 +34,9 @@ microservice-chart: servicePort: 8080 serviceAccount: create: false - annotations: {} + annotations: { } name: "" - podAnnotations: {} + podAnnotations: { } podSecurityContext: seccompProfile: type: RuntimeDefault @@ -98,7 +98,7 @@ microservice-chart: RT_SEND_SCHEDULING_TIME_IN_MINUTES: '1' RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA' RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue" - RPT_TIMEOUT: '1800' + RPT_TIMEOUT: '120' RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true' RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true' RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true' @@ -134,8 +134,8 @@ microservice-chart: tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" tmpVolumeMount: create: true - nodeSelector: {} - tolerations: [] + nodeSelector: { } + tolerations: [ ] affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: @@ -162,5 +162,5 @@ microservice-chart: repository: ghcr.io/pagopa/pagopa-wisp-converter tag: "0.0.0" pullPolicy: Always - envConfig: {} - envSecret: {} + envConfig: { } + envSecret: { } diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 825eb9c4..525704f6 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -34,9 +34,9 @@ microservice-chart: servicePort: 8080 serviceAccount: create: false - annotations: {} + annotations: { } name: "" - podAnnotations: {} + podAnnotations: { } podSecurityContext: seccompProfile: type: RuntimeDefault @@ -117,7 +117,7 @@ microservice-chart: RT_SEND_SCHEDULING_TIME_IN_MINUTES: '60' RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA' RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue" - RPT_TIMEOUT: '1800' + RPT_TIMEOUT: '300' RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true' RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true' RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true' @@ -153,8 +153,8 @@ microservice-chart: tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" tmpVolumeMount: create: true - nodeSelector: {} - tolerations: [] + nodeSelector: { } + tolerations: [ ] affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: @@ -181,5 +181,5 @@ microservice-chart: repository: ghcr.io/pagopa/pagopa-wisp-converter tag: "0.0.0" pullPolicy: Always - envConfig: {} - envSecret: {} + envConfig: { } + envSecret: { } diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 8b2c3255..91417345 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -34,9 +34,9 @@ microservice-chart: servicePort: 8080 serviceAccount: create: false - annotations: {} + annotations: { } name: "" - podAnnotations: {} + podAnnotations: { } podSecurityContext: seccompProfile: type: RuntimeDefault @@ -98,7 +98,7 @@ microservice-chart: RT_SEND_SCHEDULING_TIME_IN_MINUTES: '60' RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA' RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue" - RPT_TIMEOUT: '1800' + RPT_TIMEOUT: '60' RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true' RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true' RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true' @@ -134,8 +134,8 @@ microservice-chart: tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d" tmpVolumeMount: create: true - nodeSelector: {} - tolerations: [] + nodeSelector: { } + tolerations: [ ] affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: @@ -162,5 +162,5 @@ microservice-chart: repository: ghcr.io/pagopa/pagopa-wisp-converter tag: "0.0.0" pullPolicy: Always - envConfig: {} - envSecret: {} + envConfig: { } + envSecret: { } From b9292be6c15a91b49401a401c56cef7d4e5a9d8f Mon Sep 17 00:00:00 2001 From: Andrea De Rinaldis Date: Thu, 19 Sep 2024 12:11:15 +0200 Subject: [PATCH 2/2] [PAGOPA-2156] fix: add comments --- helm/values-dev.yaml | 2 +- helm/values-prod.yaml | 2 +- helm/values-uat.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/values-dev.yaml b/helm/values-dev.yaml index 27f20393..86b7cb9d 100644 --- a/helm/values-dev.yaml +++ b/helm/values-dev.yaml @@ -98,7 +98,7 @@ microservice-chart: RT_SEND_SCHEDULING_TIME_IN_MINUTES: '1' RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA' RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue" - RPT_TIMEOUT: '120' + RPT_TIMEOUT: '120' # 2 minutes RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true' RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true' RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true' diff --git a/helm/values-prod.yaml b/helm/values-prod.yaml index 525704f6..c99a1859 100644 --- a/helm/values-prod.yaml +++ b/helm/values-prod.yaml @@ -117,7 +117,7 @@ microservice-chart: RT_SEND_SCHEDULING_TIME_IN_MINUTES: '60' RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA' RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue" - RPT_TIMEOUT: '300' + RPT_TIMEOUT: '300' # 5 minutes RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true' RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true' RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true' diff --git a/helm/values-uat.yaml b/helm/values-uat.yaml index 91417345..279b21d2 100644 --- a/helm/values-uat.yaml +++ b/helm/values-uat.yaml @@ -98,7 +98,7 @@ microservice-chart: RT_SEND_SCHEDULING_TIME_IN_MINUTES: '60' RT_SEND_AVOID_SCHEDULING_ON_STATES: 'PAA_RT_DUPLICATA' RPT_TIMER_QUEUE_NAME: "nodo_wisp_rpt_timeout_queue" - RPT_TIMEOUT: '60' + RPT_TIMEOUT: '60' # 1 minute (set for integration tests) RE_TRACING_INTERFACE_IUVGENERATOR_ENABLED: 'true' RE_TRACING_INTERFACE_PAYMENTPOSITIONANALYSIS_ENABLED: 'true' RE_TRACING_INTERFACE_DECOUPLERCACHING_ENABLED: 'true'