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

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:36:10 +02:00
committed by GitHub
parent 45684a43de
commit 6850abe386
4 changed files with 12 additions and 12 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 3.2.3 (2025-04-09)
## 3.2.4 (2025-05-06)
* [bitnami/gitea] Release 3.2.3 ([#32905](https://github.com/bitnami/charts/pull/32905))
* [bitnami/gitea] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33365](https://github.com/bitnami/charts/pull/33365))
## <small>3.2.3 (2025-04-09)</small>
* [bitnami/gitea] Release 3.2.3 (#32905) ([cf465ce](https://github.com/bitnami/charts/commit/cf465ce64050d29fdd2ead91540bfa185b836bb3)), closes [#32905](https://github.com/bitnami/charts/issues/32905)
## <small>3.2.2 (2025-04-08)</small>

View File

@@ -1,9 +1,9 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.6.2
version: 16.6.6
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
digest: sha256:a108f4f731776ab92491934ecb771e39820d9ba893d532f6d2207f5af9d05014
generated: "2025-04-07T20:17:42.095704337Z"
version: 2.31.0
digest: sha256:1b5577724d7ca3aec34781d6c3e9f3cb866d81a7fc077746aa83a84b2bdd95c0
generated: "2025-05-06T10:13:10.360385063+02:00"

View File

@@ -38,4 +38,4 @@ maintainers:
name: gitea
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/gitea
version: 3.2.3
version: 3.2.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:
@@ -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 }}