[bitnami/contour]: Fix invalid extraVolumeMounts (#29817)

* [bitnami/contour]: Fix invalid extraVolumeMounts

The defaultBackend currently uses the extraVolumeMounts parameters of contour -
make it use its own, like it does in the condition to add the section

Signed-off-by: Maximilian Falkenstein <maximilian.falkenstein@ergon.ch>

* Update CHANGELOG.md

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

---------

Signed-off-by: Maximilian Falkenstein <maximilian.falkenstein@ergon.ch>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Maximilian Falkenstein
2024-10-09 08:05:43 +02:00
committed by GitHub
parent 104e9a7362
commit b445bd37a6
3 changed files with 8 additions and 4 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 19.0.4 (2024-10-04)
## 19.0.5 (2024-10-08)
* [bitnami/contour] Release 19.0.4 ([#29688](https://github.com/bitnami/charts/pull/29688))
* [bitnami/contour]: Fix invalid extraVolumeMounts ([#29817](https://github.com/bitnami/charts/pull/29817))
## <small>19.0.4 (2024-10-04)</small>
* [bitnami/contour] Release 19.0.4 (#29688) ([ad308c2](https://github.com/bitnami/charts/commit/ad308c2fcc162182933038eeff9a8880c0923991)), closes [#29688](https://github.com/bitnami/charts/issues/29688)
## <small>19.0.3 (2024-09-05)</small>

View File

@@ -32,4 +32,4 @@ maintainers:
name: contour
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/contour
version: 19.0.4
version: 19.0.5

View File

@@ -161,7 +161,7 @@ spec:
resources: {{- include "common.resources.preset" (dict "type" .Values.defaultBackend.resourcesPreset) | nindent 12 }}
{{- end }}
{{- if .Values.defaultBackend.extraVolumeMounts }}
volumeMounts: {{- include "common.tplvalues.render" ( dict "value" .Values.contour.extraVolumeMounts "context" $ ) | nindent 12 }}
volumeMounts: {{- include "common.tplvalues.render" ( dict "value" .Values.defaultBackend.extraVolumeMounts "context" $ ) | nindent 12 }}
{{- end }}
{{- if .Values.defaultBackend.sidecars }}
{{- include "common.tplvalues.render" ( dict "value" .Values.defaultBackend.sidecars "context" $) | nindent 8 }}