Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review hpa template to make diff work with gitops #109

Merged
merged 1 commit into from
Jan 25, 2024
Merged
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
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
Loading