mirror of
https://github.com/bitnami/charts.git
synced 2026-04-05 08:47:10 +08:00
[bitnami/kibana] Update configmap definition (#32246)
This commit is contained in:
committed by
GitHub
parent
f5056c8b66
commit
9c6ab89a2a
@@ -1,8 +1,13 @@
|
||||
# Changelog
|
||||
|
||||
## 11.5.1 (2025-03-03)
|
||||
|
||||
* [bitnami/kibana] Update configmap definition ([#32246](https://github.com/bitnami/charts/pull/32246))
|
||||
|
||||
## 11.5.0 (2025-02-24)
|
||||
|
||||
* [bitnami/kibana] Template hostname everywhere ([#30807](https://github.com/bitnami/charts/pull/30807))
|
||||
* [bitnami/*] Use CDN url for the Bitnami Application Icons (#31881) ([d9bb11a](https://github.com/bitnami/charts/commit/d9bb11a9076b9bfdcc70ea022c25ef50e9713657)), closes [#31881](https://github.com/bitnami/charts/issues/31881)
|
||||
* [bitnami/kibana] Template hostname everywhere (#30807) ([82d4893](https://github.com/bitnami/charts/commit/82d4893118dc94da0fea5055188c3a750cc414ae)), closes [#30807](https://github.com/bitnami/charts/issues/30807)
|
||||
|
||||
## <small>11.4.5 (2025-02-11)</small>
|
||||
|
||||
|
||||
@@ -32,4 +32,4 @@ maintainers:
|
||||
name: kibana
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/kibana
|
||||
version: 11.5.0
|
||||
version: 11.5.1
|
||||
|
||||
@@ -26,9 +26,9 @@ data:
|
||||
server.publicBaseUrl: {{ include "common.tplvalues.render" ( dict "value" .Values.configuration.server.publicBaseUrl "context" $ ) }}
|
||||
{{- else }}
|
||||
{{- if .Values.ingress.enabled }}
|
||||
{{- $protocol := ternary "https" "http" (or .Values.ingress.tls .Values.ingress.extraTls) -}}
|
||||
{{- $hostname := required "Ingress hostname must be specified" .Values.ingress.hostname -}}
|
||||
server.publicBaseUrl: {{ printf "%s://%s" $protocol ( include "common.tplvalues.render" ( dict "value" $hostname ) "context" $ ) }}
|
||||
{{- $protocol := ternary "https" "http" .Values.ingress.tls -}}
|
||||
{{- $hostname := required "Ingress hostname must be specified" (tpl .Values.ingress.hostname .) }}
|
||||
server.publicBaseUrl: {{ printf "%s://%s" $protocol $hostname }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
server.rewriteBasePath: {{ .Values.configuration.server.rewriteBasePath }}
|
||||
|
||||
Reference in New Issue
Block a user