[bitnami/opensearch] Fix typo in dashboards.fullname helper (#29645)

* [bitnami/opensearch] Fix typo in dashboards.fullnameOverride helper

Signed-off-by: Andreas Lindhé <7773090+lindhe@users.noreply.github.com>

* [bitnami/opensearch] Bump chart version

Signed-off-by: Andreas Lindhé <7773090+lindhe@users.noreply.github.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Andreas Lindhé <7773090+lindhe@users.noreply.github.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Signed-off-by: David Gomez <dgomezleon@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: David Gomez <dgomezleon@vmware.com>
This commit is contained in:
Andreas Lindhé
2024-10-03 11:48:05 +02:00
committed by GitHub
parent 2be9de659f
commit 5660c8cee2
3 changed files with 9 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 1.3.9 (2024-10-02)
## 1.3.10 (2024-10-03)
* [bitnami/opensearch] Release 1.3.9 ([#29747](https://github.com/bitnami/charts/pull/29747))
* [bitnami/opensearch] Fix typo in dashboards.fullname helper ([#29645](https://github.com/bitnami/charts/pull/29645))
## <small>1.3.9 (2024-10-02)</small>
* [bitnami/opensearch] Release 1.3.9 (#29747) ([ab4f933](https://github.com/bitnami/charts/commit/ab4f9331ebfbcdc7c031f90ff1e0349e5d0eeb31)), closes [#29747](https://github.com/bitnami/charts/issues/29747)
## <small>1.3.8 (2024-10-02)</small>

View File

@@ -30,4 +30,4 @@ maintainers:
name: opensearch
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/opensearch
version: 1.3.9
version: 1.3.10

View File

@@ -756,8 +756,8 @@ We truncate at 63 chars because some Kubernetes name fields are limited to this
*/}}
{{- define "opensearch.dashboards.fullname" -}}
{{- $name := default "dashboards" .Values.dashboards.nameOverride -}}
{{- if .Values.data.fullnameOverride -}}
{{- .Values.data.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- if .Values.dashboards.fullnameOverride -}}
{{- .Values.dashboards.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" (include "common.names.fullname" .) $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}