Skip to content

Commit

Permalink
[bitnami/fluent-bit] Fix typo daemonset.enable (#31088)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
3 people authored Dec 20, 2024
1 parent 84aa8b4 commit 2efe620
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions bitnami/fluent-bit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion bitnami/fluent-bit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion bitnami/fluent-bit/templates/hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion bitnami/fluent-bit/templates/pdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion bitnami/fluent-bit/templates/vpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2efe620

Please sign in to comment.