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

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:31:30 +02:00
committed by GitHub
parent 82d93b4961
commit 188a39d863
4 changed files with 12 additions and 16 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 25.1.3 (2025-05-01)
## 25.1.4 (2025-05-06)
* [bitnami/parse] Release 25.1.3 ([#33280](https://github.com/bitnami/charts/pull/33280))
* [bitnami/parse] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33419](https://github.com/bitnami/charts/pull/33419))
## <small>25.1.3 (2025-05-01)</small>
* [bitnami/parse] Release 25.1.3 (#33280) ([23c378a](https://github.com/bitnami/charts/commit/23c378a148067ae0f4bbe5a519966d78ef26d425)), closes [#33280](https://github.com/bitnami/charts/issues/33280)
## <small>25.1.2 (2025-04-28)</small>

View File

@@ -1,9 +1,9 @@
dependencies:
- name: mongodb
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.5.4
version: 16.5.5
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.2
digest: sha256:ee6c56e4038f63befcbcd87cc8e53b190467bda79b3a3d2fac62ba0f03106d9a
generated: "2025-05-01T12:30:41.439046438Z"
version: 2.31.0
digest: sha256:77415f87229cfa68e5cbd6e6ef9fd5eda54027d4f91eecd757bdead7dc8131b1
generated: "2025-05-06T10:52:52.797553604+02:00"

View File

@@ -39,4 +39,4 @@ maintainers:
name: parse
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/parse
version: 25.1.3
version: 25.1.4

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:
@@ -28,9 +28,7 @@ spec:
{{- toYaml .Values.ingress.dashboard.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.dashboard.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.dashboard.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "parse.dashboard.fullname" .) "servicePort" "http-dashboard" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.dashboard.extraHosts }}
@@ -38,9 +36,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 "parse.dashboard.fullname" .) "servicePort" "http-dashboard" "context" $) | nindent 14 }}
{{- end }}
{{- end }}
@@ -52,9 +48,7 @@ spec:
{{- toYaml .Values.ingress.server.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.ingress.server.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.ingress.server.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" .) "servicePort" "http-server" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.ingress.server.extraHosts }}
@@ -62,9 +56,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-server" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}