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

This commit is contained in:
Javier J. Salmerón García
2025-05-06 17:25:35 +02:00
committed by GitHub
parent 6d35d16ffa
commit a05c481865
4 changed files with 10 additions and 10 deletions
+5 -1
View File
@@ -1,8 +1,12 @@
# Changelog
## 12.0.1 (2025-05-06)
* [bitnami/kibana] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([#33383](https://github.com/bitnami/charts/pull/33383))
## 12.0.0 (2025-04-29)
* [bitnami/kibana] Release 12.0.0 ([#33244](https://github.com/bitnami/charts/pull/33244))
* [bitnami/kibana] Release 12.0.0 (#33244) ([389d46f](https://github.com/bitnami/charts/commit/389d46f68a2a84b0239e93d5c361e548c6d0f7c9)), closes [#33244](https://github.com/bitnami/charts/issues/33244)
## 11.6.0 (2025-04-04)
+3 -3
View File
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
digest: sha256:46afdf79eae69065904d430f03f7e5b79a148afed20aa45ee83ba88adc036169
generated: "2025-03-04T15:02:39.8564055Z"
version: 2.31.0
digest: sha256:c4c9af4e0ca23cf2c549e403b2a2bba2c53a3557cee23da09fa4cdf710044c2c
generated: "2025-05-06T10:26:44.842993356+02:00"
+1 -1
View File
@@ -33,4 +33,4 @@ maintainers:
name: kibana
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/kibana
version: 12.0.0
version: 12.0.1
+1 -5
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:
@@ -23,9 +23,7 @@ spec:
- http:
paths:
- 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 }}
{{- if ne .Values.ingress.hostname "*" }}
host: {{ include "common.tplvalues.render" ( dict "value" .Values.ingress.hostname "context" $ ) }}
@@ -36,9 +34,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 }}