From de02892396ed5e93d3363f385d715f88834191e0 Mon Sep 17 00:00:00 2001 From: Clay Rosenthal Date: Tue, 23 Sep 2025 06:44:40 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20fix:=20Helm=20Chart=20HPA=20Conf?= =?UTF-8?q?iguration=20Issues=20(#9770)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helm/librechat/Chart.yaml | 2 +- helm/librechat/templates/hpa.yaml | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/helm/librechat/Chart.yaml b/helm/librechat/Chart.yaml index 2ce37fa92e..c158a8cb77 100755 --- a/helm/librechat/Chart.yaml +++ b/helm/librechat/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.8.10 +version: 1.9.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/helm/librechat/templates/hpa.yaml b/helm/librechat/templates/hpa.yaml index aa990fb668..740d5c3809 100755 --- a/helm/librechat/templates/hpa.yaml +++ b/helm/librechat/templates/hpa.yaml @@ -17,12 +17,16 @@ spec: - type: Resource resource: name: cpu - targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} {{- end }} {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} - type: Resource resource: name: memory - targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} {{- end }} {{- end }} \ No newline at end of file