[bitnami/rabbitmq] fix if statement for checksum/secret annotation (#4644)

This commit is contained in:
rabbituser01
2020-12-08 17:11:31 +02:00
committed by GitHub
parent dc3d0c3771
commit 95fde31b18
2 changed files with 2 additions and 2 deletions

View File

@@ -23,4 +23,4 @@ name: rabbitmq
sources:
- https://github.com/bitnami/bitnami-docker-rabbitmq
- https://www.rabbitmq.com
version: 8.4.2
version: 8.4.3

View File

@@ -26,7 +26,7 @@ spec:
{{- end }}
annotations:
checksum/config: {{ include (print $.Template.BasePath "/configuration.yaml") . | sha256sum }}
{{- if or (not .Values.auth.existingErlangSecret) (not .Values.auth.existingPasswordSecret) }}
{{- if or (not .Values.auth.existingErlangSecret) (not .Values.auth.existingPasswordSecret) .Values.extraSecrets }}
checksum/secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
{{- end }}
{{- if and .Values.auth.tls.enabled (not .Values.auth.tls.existingSecret) }}