[bitnami/fluentd] fix: 🐛 Only check replaced images when set (#26506)

* [bitnami/fluentd] fix: 🐛 Only check replaced images when set

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

* Update CHANGELOG.md

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

---------

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Javier J. Salmerón-García
2024-05-30 09:44:37 +02:00
committed by GitHub
parent 1a2abfea3c
commit eb7104dd96
3 changed files with 14 additions and 3 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 6.5.1 (2024-05-28)
* [bitnami/fluentd] fix: :bug: Only check replaced images when set ([#26506](https://github.com/bitnami/charts/pull/26506))
## 6.5.0 (2024-05-28)
* [bitnami/fluentd] add extra gems extensions volume on forwarders ([#26489](https://github.com/bitnami/charts/pull/26489))
* [bitnami/fluentd] add extra gems extensions volume on forwarders (#26489) ([64c2708](https://github.com/bitnami/charts/commit/64c27084c6f03dc505a30ad77852a38c46ddf1f5)), closes [#26489](https://github.com/bitnami/charts/issues/26489)
## 6.4.0 (2024-05-27)

View File

@@ -30,4 +30,4 @@ maintainers:
name: fluentd
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/fluentd
version: 6.5.0
version: 6.5.1

View File

@@ -54,4 +54,11 @@ In order to replicate the container startup scripts execute this command:
{{- include "fluentd.validateValues" . }}
{{- include "fluentd.checkRollingTags" . -}}
{{- include "common.warnings.resources" (dict "sections" (list "aggregator" "forwarder") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.forwarder.image .Values.aggregator.image) "context" $) }}
{{- $imagesToCheck := (list .Values.image) }}
{{- if .Values.forwarder.image.repository }}
{{- $imagesToCheck = append $imagesToCheck .Values.forwarder.image }}
{{- end }}
{{- if .Values.aggregator.image.repository }}
{{- $imagesToCheck = append $imagesToCheck .Values.aggregator.image }}
{{- end }}
{{- include "common.warnings.modifiedImages" (dict "images" $imagesToCheck "context" $) }}