Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualespica committed Feb 12, 2025
1 parent 5630f73 commit d697260
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
34 changes: 18 additions & 16 deletions helm/values-dev.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,33 +24,34 @@ 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
- 12345 #jmx-exporter
- 8080
ingress:
create: true
host: "weudev.fdr.internal.dev.platform.pagopa.it"
Expand All @@ -65,10 +66,10 @@ microservice-chart:
seccompProfile:
type: RuntimeDefault
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- NET_BIND_SERVICE
allowPrivilegeEscalation: true
# capabilities:
# add:
# - NET_BIND_SERVICE
resources:
requests:
memory: "256Mi"
Expand Down Expand Up @@ -96,6 +97,7 @@ microservice-chart:
BLOB_STORAGE_FDR3_CONTAINER: "fdr3-flows"
EVENT_HUB_FLOWTX_NAME: "fdr-qi-flows"
EVENT_HUB_REPORTEDIUV_NAME: "fdr-qi-reported-iuv"
ASPNETCORE_URLS: "http://*:8080"
envFieldRef:
APP_NAME: "metadata.labels['app.kubernetes.io/instance']"
APP_VERSION: "metadata.labels['app.kubernetes.io/version']"
Expand Down
10 changes: 5 additions & 5 deletions host.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"logging": {
"fileLoggingMode": "debugOnly",
"logLevel": {
"default": "None",
"Host.Results": "Error",
"Function.ProcessFDR1BlobFiles": "Information",
"Function.ProcessFDR3BlobFiles": "Information",
"Host.Aggregator": "Error"
"default": "Debug",
"Host.Results": "Debug",
"Function.ProcessFDR1BlobFiles": "Debug",
"Function.ProcessFDR3BlobFiles": "Debug",
"Host.Aggregator": "Debug"
},
"applicationInsights": {
"samplingSettings": {
Expand Down

0 comments on commit d697260

Please sign in to comment.