Skip to content

Commit

Permalink
Review hpa template to make diff work with gitops (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmet authored Jan 25, 2024
1 parent c535355 commit 6527ea3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
14 changes: 13 additions & 1 deletion charts/artifacts/templates/autoscaler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,16 @@ spec:
name: {{ template "fullname" $ }}
minReplicas: {{ .Values.deployment.minReplicas }}
maxReplicas: {{ .Values.deployment.maxReplicas }}
{{ toYaml .Values.deployment.autoscalerSpec | indent 2 }}
metrics:
- type: Resource
resource:
name: memory
target:
type: AverageValue
averageValue: {{ .Values.deployment.autoscalerSpec.memoryUtilization }}
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: {{ .Values.deployment.autoscalerSpec.cpuUtilization }}
15 changes: 2 additions & 13 deletions charts/artifacts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,19 +86,8 @@ deployment:
## of criterias to meet to scale up and down.
##
autoscalerSpec:
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 50
- type: Resource
resource:
name: memory
target:
type: AverageValue
averageValue: 500Mi
cpuUtilization: 50
memoryUtilization: 500Mi

artifacts:
## Configure resource requests and limits
Expand Down

0 comments on commit 6527ea3

Please sign in to comment.