[bitnami/fluent-bit] Fix HPA target type (#34052)

* chore: fix hpa target type

Signed-off-by: youness.chetoui <youness.chetoui@additi.fr>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: youness.chetoui <youness.chetoui@additi.fr>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
younessof2m
2025-06-03 16:46:41 +02:00
committed by GitHub
parent 383030cf3e
commit b38ed9161d
3 changed files with 9 additions and 3 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 3.1.4 (2025-05-30)
## 3.1.5 (2025-06-03)
* [bitnami/fluent-bit] :zap: :arrow_up: Update dependency references ([#34019](https://github.com/bitnami/charts/pull/34019))
* [bitnami/fluent-bit] Fix HPA target type ([#34052](https://github.com/bitnami/charts/pull/34052))
## <small>3.1.4 (2025-05-30)</small>
* [bitnami/fluent-bit] :zap: :arrow_up: Update dependency references (#34019) ([3c8dd6f](https://github.com/bitnami/charts/commit/3c8dd6ff2c92ee698869434becb5331dca4b8fa9)), closes [#34019](https://github.com/bitnami/charts/issues/34019)
## <small>3.1.3 (2025-05-13)</small>

View File

@@ -31,4 +31,4 @@ maintainers:
name: fluent-bit
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit
version: 3.1.4
version: 3.1.5

View File

@@ -33,6 +33,7 @@ spec:
name: cpu
target:
averageUtilization: {{ .Values.autoscaling.hpa.targetCPUUtilizationPercentage }}
type: Utilization
{{- end }}
{{- if .Values.autoscaling.hpa.targetMemoryUtilizationPercentage }}
- type: Resource
@@ -40,6 +41,7 @@ spec:
name: memory
target:
averageUtilization: {{ .Values.autoscaling.hpa.targetMemoryUtilizationPercentage }}
type: Utilization
{{- end }}
{{- if .Values.autoscaling.hpa.customRules -}}
{{- toYaml .Values.autoscaling.hpa.customRules | nindent 4}}