Skip to content

Commit

Permalink
[PAGOPA-2645] uat helm update
Browse files Browse the repository at this point in the history
  • Loading branch information
svariant authored and aacitelli committed Feb 13, 2025
1 parent 5ef1d80 commit db043a0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 14 deletions.
1 change: 1 addition & 0 deletions helm/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ microservice-chart:
BLOB_STORAGE_FDR3_CONTAINER: "fdr3-flows"
EVENT_HUB_FLOWTX_NAME: "fdr-qi-flows"
EVENT_HUB_REPORTEDIUV_NAME: "fdr-qi-reported-iuv"
FUNCTIONS_SECRETS_PATH: "/tmp/secrets"
envFieldRef:
APP_NAME: "metadata.labels['app.kubernetes.io/instance']"
APP_VERSION: "metadata.labels['app.kubernetes.io/version']"
Expand Down
37 changes: 23 additions & 14 deletions helm/values-uat.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
microservice-chart:
namespace: "fdr"
nameOverride: ""
nameOverride: "pagopa-fdr-2-event"
fullnameOverride: "pagopa-fdr-2-event-hub"
image:
repository: ghcr.io/pagopa/pagopa-fdr-2-event-hub
Expand All @@ -24,32 +24,32 @@ microservice-chart:
livenessProbe:
handlerType: tcpSocket
tcpSocket:
port: 80
initialDelaySeconds: 60
port: 8080
initialDelaySeconds: 30
periodSeconds: 30
failureThreshold: 10
readinessProbe:
handlerType: tcpSocket
tcpSocket:
port: 80
initialDelaySeconds: 60
port: 8080
initialDelaySeconds: 30
periodSeconds: 30
failureThreshold: 10
deployment:
create: true
serviceMonitor:
create: true
endpoints:
- interval: 10s #jmx-exporter
targetPort: 12345
path: /metrics
# serviceMonitor:
# create: true
# endpoints:
# - interval: 10s #jmx-exporter
# targetPort: 12345
# path: /metrics
ports:
- 80 #http
- 12345 #jmx-exporter
- 8080
service:
type: ClusterIP
ports:
- 80 #http
- 8080
- 12345 #jmx-exporter
ingress:
create: true
Expand Down Expand Up @@ -100,6 +100,7 @@ microservice-chart:
BLOB_STORAGE_FDR3_CONTAINER: "fdr3-flows"
EVENT_HUB_FLOWTX_NAME: "fdr-qi-flows"
EVENT_HUB_REPORTEDIUV_NAME: "fdr-qi-reported-iuv"
FUNCTIONS_SECRETS_PATH: "/tmp/secrets"
envFieldRef:
APP_NAME: "metadata.labels['app.kubernetes.io/instance']"
APP_VERSION: "metadata.labels['app.kubernetes.io/version']"
Expand All @@ -114,6 +115,14 @@ microservice-chart:
tenantId: "7788edaf-0346-4068-9d79-c868aed15b3d"
nodeSelector: {}
tolerations: []
affinity: {}
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node_type
operator: In
values:
- 'user'
canaryDelivery:
create: false

0 comments on commit db043a0

Please sign in to comment.