Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.32.0
appVersion: 0.9.12
dependencies:
- name: microservice-chart
version: 7.5.0
version: 8.0.2
repository: "https://pagopa.github.io/aks-microservice-chart-blueprint"
7 changes: 6 additions & 1 deletion helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ microservice-chart:
periodSeconds: 10
deployment:
create: true
replicas: 1
replicas: 1 # (default) same as HPA minReplica
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
serviceMonitor:
create: true
endpoints:
Expand Down
6 changes: 6 additions & 0 deletions helm/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ microservice-chart:
periodSeconds: 10
deployment:
create: true
replicas: 2 # (default) same as HPA minReplica
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
serviceMonitor:
create: true
endpoints:
Expand Down
7 changes: 6 additions & 1 deletion helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ microservice-chart:
periodSeconds: 10
deployment:
create: true
replicas: 1
replicas: 1 # (default) same as HPA minReplica
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 0
maxSurge: 1
serviceMonitor:
create: true
endpoints:
Expand Down
Loading