[bitnami/fluent-bit] Fix typo daemonset.enable (#31088)

* Fix fluent-bit pdb creation condition

Signed-off-by: Eugene Kim <eugene70kim@gmail.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Eugene Kim <eugene70kim@gmail.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: 김유진 <ek@hanatour.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Eugene Kim
2024-12-20 20:02:21 +09:00
committed by GitHub
parent 84aa8b4af5
commit 2efe620ac5
5 changed files with 11 additions and 6 deletions

View File

@@ -1,8 +1,13 @@
# Changelog
## 2.4.1 (2024-12-19)
## 2.4.2 (2024-12-20)
* [bitnami/fluent-bit] Release 2.4.1 ([#31123](https://github.com/bitnami/charts/pull/31123))
* [bitnami/fluent-bit] Fix typo daemonset.enable ([#31088](https://github.com/bitnami/charts/pull/31088))
## <small>2.4.1 (2024-12-19)</small>
* [bitnami/*] Fix typo in README (#31052) ([b41a51d](https://github.com/bitnami/charts/commit/b41a51d1bd04841fc108b78d3b8357a5292771c8)), closes [#31052](https://github.com/bitnami/charts/issues/31052)
* [bitnami/fluent-bit] Release 2.4.1 (#31123) ([1cb1993](https://github.com/bitnami/charts/commit/1cb199349264a9210d3424829416471760411021)), closes [#31123](https://github.com/bitnami/charts/issues/31123)
## 2.4.0 (2024-12-10)

View File

@@ -28,4 +28,4 @@ maintainers:
name: fluent-bit
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/fluent-bit
version: 2.4.1
version: 2.4.2

View File

@@ -3,7 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and (not .Values.daemonset.enable) .Values.autoscaling.hpa.enabled }}
{{- if and (not .Values.daemonset.enabled) .Values.autoscaling.hpa.enabled }}
apiVersion: {{ include "common.capabilities.hpa.apiVersion" ( dict "context" $ ) }}
kind: HorizontalPodAutoscaler
metadata:

View File

@@ -3,7 +3,7 @@ Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and .Values.pdb.create (not .Values.daemonset.enable) }}
{{- if and .Values.pdb.create (not .Values.daemonset.enabled) }}
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
kind: PodDisruptionBudget
metadata:

View File

@@ -32,7 +32,7 @@ spec:
{{- end }}
targetRef:
apiVersion: apps/v1
kind: {{ ternary "DaemonSet" "Deployment" .Values.daemonset.enable }}
kind: {{ ternary "DaemonSet" "Deployment" .Values.daemonset.enabled }}
name: {{ include "fluent-bit.fullname" . }}
{{- if .Values.autoscaling.vpa.updatePolicy }}
updatePolicy: