[bitnami/fluent-bit] chore: ♻️ ⬆️ Update common and remove k8s < 1.23 references (#33361)

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:37:00 +02:00
committed by GitHub
parent 1834a52444
commit 412517d16a
5 changed files with 11 additions and 13 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 3.1.1 (2025-04-23)
## 3.1.2 (2025-05-06)
* [bitnami/fluent-bit] Release 3.1.1 ([#33151](https://github.com/bitnami/charts/pull/33151))
* [bitnami/fluent-bit] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33361](https://github.com/bitnami/charts/pull/33361))
## <small>3.1.1 (2025-04-23)</small>
* [bitnami/fluent-bit] Release 3.1.1 (#33151) ([79e0e18](https://github.com/bitnami/charts/commit/79e0e185755f4b4b058ac3697761025df6c03532)), closes [#33151](https://github.com/bitnami/charts/issues/33151)
## 3.1.0 (2025-04-21)

View File

@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
digest: sha256:46afdf79eae69065904d430f03f7e5b79a148afed20aa45ee83ba88adc036169
generated: "2025-02-20T08:55:51.288313+01:00"
version: 2.31.0
digest: sha256:c4c9af4e0ca23cf2c549e403b2a2bba2c53a3557cee23da09fa4cdf710044c2c
generated: "2025-05-06T10:10:11.355482902+02:00"

View File

@@ -29,4 +29,4 @@ maintainers:
name: fluent-bit
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit
version: 3.1.1
version: 3.1.2

View File

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

View File

@@ -16,7 +16,7 @@ metadata:
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
{{- end }}
spec:
{{- if and .Values.ingress.ingressClassName (include "common.ingress.supportsIngressClassname" .) }}
{{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
{{- end }}
rules:
@@ -28,9 +28,7 @@ spec:
{{- toYaml .Values.ingress.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "fluent-bit.fullname" . ) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
@@ -38,9 +36,7 @@ spec:
http:
paths:
- path: {{ default "/" .path }}
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}