[bitnami/moodle] Fix hostAliases Bug in Moodle deployment.yaml (#34839)

* Fix hostAliases Bug in Moodle deployment.yaml

https://github.com/bitnami/charts/issues/34823

* fix(values.yaml): Add type to hostAliases to avoid a recursive analysis

---------

Signed-off-by: marhode <121863882+marhode@users.noreply.github.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Signed-off-by: Fran Mulero <francisco-jose.mulero@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Fran Mulero <francisco-jose.mulero@broadcom.com>
This commit is contained in:
marhode
2025-07-10 11:59:36 +00:00
committed by GitHub
co-authored by Bitnami Bot Fran Mulero
parent 3f448fb644
commit 26d00844eb
4 changed files with 12 additions and 9 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog
## 27.0.1 (2025-07-08)
## 27.0.2 (2025-07-10)
* [bitnami/moodle] :zap: :arrow_up: Update dependency references ([#34862](https://github.com/bitnami/charts/pull/34862))
* [bitnami/moodle] Fix hostAliases Bug in Moodle deployment.yaml ([#34839](https://github.com/bitnami/charts/pull/34839))
## <small>27.0.1 (2025-07-08)</small>
* [bitnami/moodle] :zap: :arrow_up: Update dependency references (#34862) ([e299e92](https://github.com/bitnami/charts/commit/e299e92ff4be3ddb8baf0a01a4f767970a50d2d4)), closes [#34862](https://github.com/bitnami/charts/issues/34862)
## 27.0.0 (2025-06-25)
+1 -1
View File
@@ -39,4 +39,4 @@ maintainers:
name: moodle
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/moodle
version: 27.0.1
version: 27.0.2
-4
View File
@@ -63,10 +63,6 @@ spec:
{{- if .Values.tolerations }}
tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.tolerations "context" $) | nindent 8 }}
{{- end }}
hostAliases:
- ip: "127.0.0.1"
hostnames:
- "status.localhost"
initContainers: {{- if .Values.initContainers -}}{{- include "common.tplvalues.render" (dict "value" .Values.initContainers "context" $) | nindent 8 }}{{- end -}}
{{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
- name: volume-permissions
+5 -2
View File
@@ -190,10 +190,13 @@ sidecars: []
## @param automountServiceAccountToken Mount Service Account token in pod
##
automountServiceAccountToken: false
## @param hostAliases Moodle&trade; pods host aliases
## @param hostAliases [array] Moodle&trade; pods host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []
hostAliases:
- ip: "127.0.0.1"
hostnames:
- "status.localhost"
## @param tolerations Tolerations for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##