From b6e9a8c5020810b30369488b24f88b0a40166349 Mon Sep 17 00:00:00 2001 From: ianarsenault Date: Fri, 25 Oct 2024 17:08:54 -0400 Subject: [PATCH] prepare for release fix --- CHANGELOG | 4 ++++ charts/service-deployment/templates/hpa.yaml | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f2fabaa..9e5a773 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 0.1.77 (2024-10-25) +--------------------------- +charts/service-deployment: update hpa to supply metrics object instead of fixed CPU utilization threshold (closes #202) + Version 0.1.76 (2024-10-23) --------------------------- charts/snowplow-iglu-server: add support for tolerations and topologySpreadConstraints (closes #194) diff --git a/charts/service-deployment/templates/hpa.yaml b/charts/service-deployment/templates/hpa.yaml index 9540bb3..c149378 100644 --- a/charts/service-deployment/templates/hpa.yaml +++ b/charts/service-deployment/templates/hpa.yaml @@ -12,10 +12,8 @@ spec: name: {{ include "app.fullname" . }} minReplicas: {{ .Values.hpa.minReplicas }} maxReplicas: {{ .Values.hpa.maxReplicas }} - {{- if .Values.hpa.metrics }} metrics: {{- toYaml .Values.hpa.metrics | nindent 4 }} - {{- end }} behavior: {{- toYaml .Values.hpa.behavior | nindent 4 }} {{- end }}