[bitnami/discourse] chore: ♻️ ⬆️ Update common and remove k8s < 1.23 references (#33352)

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:39:23 +02:00
committed by GitHub
parent 97dc9b1af8
commit 7947c69dd2
4 changed files with 8 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
# Changelog
## 15.1.14 (2025-04-29)
## 15.1.15 (2025-05-06)
* [bitnami/discourse] Release 15.1.14 ([#33241](https://github.com/bitnami/charts/pull/33241))
* [bitnami/discourse] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33352](https://github.com/bitnami/charts/pull/33352))
## <small>15.1.13 (2025-04-09)</small>

View File

@@ -1,12 +1,12 @@
dependencies:
- name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 20.13.3
version: 20.13.4
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.6.6
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
digest: sha256:5561b9dc894f0d22a64de0f5b6a759be3daf794db2f938ab6bd32f34f4df3545
generated: "2025-04-29T08:56:18.883806794Z"
version: 2.31.0
digest: sha256:5c3c11245a8023df821d6dd5a25713838d25f09ef494759c8459d30f1f841a2e
generated: "2025-05-06T10:03:28.512733692+02:00"

View File

@@ -42,4 +42,4 @@ maintainers:
name: discourse
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/discourse
version: 15.1.14
version: 15.1.15

View File

@@ -15,7 +15,7 @@ metadata:
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
{{- end }}
spec:
{{- if and .Values.ingress.ingressClassName (eq "true" (include "common.ingress.supportsIngressClassname" .)) }}
{{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
{{- end }}
rules:
@@ -27,9 +27,7 @@ spec:
{{- toYaml .Values.ingress.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.extraHosts }}
@@ -37,9 +35,7 @@ spec:
http:
paths:
- path: {{ default "/" .path }}
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}