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

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:27:34 +02:00
committed by GitHub
parent 4041a6ea2e
commit 4f25ca4507
4 changed files with 11 additions and 11 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 9.0.5 (2025-05-02)
## 9.0.6 (2025-05-06)
* [bitnami/jupyterhub] Release 9.0.5 ([#33304](https://github.com/bitnami/charts/pull/33304))
* [bitnami/jupyterhub] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33378](https://github.com/bitnami/charts/pull/33378))
## <small>9.0.5 (2025-05-02)</small>
* [bitnami/jupyterhub] Release 9.0.5 (#33304) ([18bc5da](https://github.com/bitnami/charts/commit/18bc5da4bfc5c0b02874b4c13b4f226a00759608)), closes [#33304](https://github.com/bitnami/charts/issues/33304)
## <small>9.0.4 (2025-05-02)</small>

View File

@@ -4,6 +4,6 @@ dependencies:
version: 16.6.6
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.2
digest: sha256:6d3a0d03aa61caccf74b405c157b30d095335e15a664c28b4623349efdd4efc5
generated: "2025-05-02T08:14:29.547212662Z"
version: 2.31.0
digest: sha256:1b5577724d7ca3aec34781d6c3e9f3cb866d81a7fc077746aa83a84b2bdd95c0
generated: "2025-05-06T10:23:03.610375199+02:00"

View File

@@ -38,4 +38,4 @@ maintainers:
name: jupyterhub
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/jupyterhub
version: 9.0.5
version: 9.0.6

View File

@@ -22,7 +22,7 @@ metadata:
{{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
{{- end }}
spec:
{{- if and .Values.proxy.ingress.ingressClassName (include "common.ingress.supportsIngressClassname" .) }}
{{- if .Values.proxy.ingress.ingressClassName }}
ingressClassName: {{ .Values.proxy.ingress.ingressClassName | quote }}
{{- end }}
rules:
@@ -34,9 +34,7 @@ spec:
{{- toYaml .Values.proxy.ingress.extraPaths | nindent 10 }}
{{- end }}
- path: {{ .Values.proxy.ingress.path }}
{{- if eq "true" (include "common.ingress.supportsPathType" .) }}
pathType: {{ .Values.proxy.ingress.pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (printf "%s-proxy-public" (include "common.names.fullname" . )) "servicePort" "http" "context" $) | nindent 14 }}
{{- end }}
{{- range .Values.proxy.ingress.extraHosts }}
@@ -44,9 +42,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.proxy.ingress.extraRules }}