bitnami/airflow Fix indentation error when providing setupDBJob.resources in values (#32599)

* fix: indentation error on setup-db-job.yaml

Signed-off-by: YaphetKG <kebedey@renci.org>

* bump chart version

Signed-off-by: YaphetKG <kebedey@renci.org>

* Update CHANGELOG.md

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

---------

Signed-off-by: YaphetKG <kebedey@renci.org>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
YaphetKG
2025-03-25 14:19:40 -04:00
committed by GitHub
parent 2bc41c9aa9
commit 96b76511ff
3 changed files with 9 additions and 4 deletions

View File

@@ -1,8 +1,13 @@
# Changelog
## 22.7.1 (2025-03-22)
## 22.7.2 (2025-03-25)
* [bitnami/airflow] Release 22.7.1 ([#32559](https://github.com/bitnami/charts/pull/32559))
* bitnami/airflow Fix indentation error when providing setupDBJob.resources in values ([#32599](https://github.com/bitnami/charts/pull/32599))
## <small>22.7.1 (2025-03-22)</small>
* [bitnami/*] Add tanzuCategory annotation (#32409) ([a8fba5c](https://github.com/bitnami/charts/commit/a8fba5cb01f6f4464ca7f69c50b0fbe97d837a95)), closes [#32409](https://github.com/bitnami/charts/issues/32409)
* [bitnami/airflow] Release 22.7.1 (#32559) ([4d21c97](https://github.com/bitnami/charts/commit/4d21c9734d3348ee1fcd38d80958af501dbe51c5)), closes [#32559](https://github.com/bitnami/charts/issues/32559)
## 22.7.0 (2025-03-04)

View File

@@ -40,4 +40,4 @@ maintainers:
name: airflow
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/airflow
version: 22.7.1
version: 22.7.2

View File

@@ -46,7 +46,7 @@ spec:
securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.setupDBJob.containerSecurityContext "context" .) | nindent 12 }}
{{- end }}
{{- if .Values.setupDBJob.resources }}
resources: {{- toYaml .Values.setupDBJob.resources | nindent 4 }}
resources: {{- toYaml .Values.setupDBJob.resources | nindent 12 }}
{{- else if ne .Values.setupDBJob.resourcesPreset "none" }}
resources: {{- include "common.resources.preset" (dict "type" .Values.setupDBJob.resourcesPreset) | nindent 12 }}
{{- end }}