Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualespica committed Nov 13, 2024
1 parent 18a117d commit b768c0f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ version: 0.5.0
appVersion: 0.0.6
dependencies:
- name: microservice-chart
version: 5.9.0
version: 2.8.0
repository: "https://pagopa.github.io/aks-microservice-chart-blueprint"
35 changes: 25 additions & 10 deletions helm/values-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
microservice-chart:
namespace: "gps"
nameOverride: ""
fullnameOverride: "pagopa-gpd-ingestion-manager"
fullnameOverride: ""
image:
repository: ghcr.io/pagopa/pagopa-gpd-ingestion-manager
tag: "0.0.6"
Expand All @@ -23,12 +23,22 @@ microservice-chart:
periodSeconds: 10
deployment:
create: true
service:
serviceMonitor:
create: true
endpoints:
- interval: 10s #jmx-exporter
targetPort: 12345
path: /metrics
ports:
- 80 #http
- 8080
- 12345 #jmx-exporter
service:
type: ClusterIP
ports:
- 80 #http
- 12345 #jmx-exporter
- 8080
- 80
ingress:
create: true
host: "weudev.gps.internal.dev.platform.pagopa.it"
Expand All @@ -44,10 +54,6 @@ microservice-chart:
type: RuntimeDefault
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: false
capabilities:
drop:
- all
resources:
requests:
memory: "512Mi"
Expand All @@ -66,7 +72,13 @@ microservice-chart:
metadata:
# Required
type: Utilization # Allowed types are 'Utilization' or 'AverageValue'
value: "75"
value: "80"
- type: memory
metadata:
# Required
type: Utilization # Allowed types are 'Utilization' or 'AverageValue'
value: "80"
fileConfig: {}
envConfig:
WEBSITE_SITE_NAME: "pagopagpdingestionmanager" # required to show cloud role name in application insights
FUNCTIONS_WORKER_RUNTIME: "java"
Expand All @@ -79,6 +91,9 @@ microservice-chart:
CONSOLE_LOG_THRESHOLD: "DEBUG"
CONSOLE_LOG_PATTERN: "%d{HH:mm:ss.SSS}[%thread]%-5level%logger{36}-%msg%n"
CONSOLE_LOG_CHARSET: "UTF-8"
envFieldRef:
APP_NAME: "metadata.labels['app.kubernetes.io/instance']"
APP_VERSION: "metadata.labels['app.kubernetes.io/version']"
envSecret:
AzureWebJobsStorage: 'AzureWebJobsStorage-gdp-ingestion'
APPLICATIONINSIGHTS_CONNECTION_STRING: 'ai-d-connection-string'
Expand All @@ -102,7 +117,7 @@ microservice-chart:
- key: node_type
operator: In
values:
- user
- 'user'
canaryDelivery:
create: false
ingress:
Expand All @@ -115,7 +130,7 @@ microservice-chart:
service:
create: true
deployment:
create: true
create: false
image:
repository: ghcr.io/pagopa/pagopa-gpd-ingestion-manager
tag: "0.0.0"
Expand Down

0 comments on commit b768c0f

Please sign in to comment.