[bitnami/common] Common credential error (#5884)

* Add information about credentials to rabbitmq

* Bump versions of rabbitmq

* Update bitnami/rabbitmq/templates/NOTES.txt

Co-authored-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>

* Add information about credentials to common error messages

* Update version of common

* Update bitnami/common/templates/_errors.tpl

Co-authored-by: Andrés Bono <andresbonojimenez@gmail.com>

* Update bitnami/common/templates/_errors.tpl

Co-authored-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>
Co-authored-by: Andrés Bono <andresbono@vmware.com>
Co-authored-by: Andrés Bono <andresbonojimenez@gmail.com>
This commit is contained in:
David Mládek
2021-03-25 12:06:30 +01:00
committed by GitHub
parent 452e5e9466
commit 328ca86351
2 changed files with 6 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ annotations:
category: Infrastructure
apiVersion: v2
# Please make sure that version and appVersion are always the same.
appVersion: 1.4.1
appVersion: 1.4.2
description: A Library Helm Chart for grouping common logic between bitnami charts. This chart is not deployable by itself.
home: https://github.com/bitnami/charts/tree/master/bitnami/common
icon: https://bitnami.com/downloads/logos/bitnami-mark.png
@@ -20,4 +20,4 @@ sources:
- https://github.com/bitnami/charts
- http://www.bitnami.com/
type: library
version: 1.4.1
version: 1.4.2

View File

@@ -14,7 +14,10 @@ Required password params:
{{- define "common.errors.upgrade.passwords.empty" -}}
{{- $validationErrors := join "" .validationErrors -}}
{{- if and $validationErrors .context.Release.IsUpgrade -}}
{{- $errorString := "\nPASSWORDS ERROR: you must provide your current passwords when upgrade the release%s" -}}
{{- $errorString := "\nPASSWORDS ERROR: You must provide your current passwords when upgrading the release." -}}
{{- $errorString = print $errorString "\n Note that even after reinstallation, old credentials may be needed as they may be kept in persistent volume claims." -}}
{{- $errorString = print $errorString "\n Further information can be obtained at https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases" -}}
{{- $errorString = print $errorString "\n%s" -}}
{{- printf $errorString $validationErrors | fail -}}
{{- end -}}
{{- end -}}