Skip to content

Commit

Permalink
[bitnami/kibana] Update configmap definition (#32246)
Browse files Browse the repository at this point in the history
  • Loading branch information
gongomgra authored Mar 4, 2025
1 parent f5056c8 commit 9c6ab89
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion bitnami/kibana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/kibana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions bitnami/kibana/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 9c6ab89

Please sign in to comment.