[bitnami/kafka] Fix typo in helpers (#3344)

* [bitnami/kafka] Fix typo in helpers

* Increase verbosity
This commit is contained in:
Carlos Rodríguez Hernández
2020-08-06 16:22:34 +02:00
committed by GitHub
parent 218817b8af
commit 19759aa04e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: kafka
version: 11.7.1
version: 11.7.2
appVersion: 2.5.0
description: Apache Kafka is a distributed streaming platform.
keywords:
+2 -2
View File
@@ -511,8 +511,8 @@ kafka: auth.clientProtocol auth.interBrokerProtocol
{{- $replicaCount := int .Values.replicaCount }}
{{- $nodePortListLength := len .Values.externalAccess.service.nodePorts }}
{{- if and .Values.externalAccess.enabled (not .Values.externalAccess.autoDiscovery.enabled) (not (eq $replicaCount $nodePortListLength )) (eq .Values.externalAccess.service.type "NodePort") -}}
kafka: .Values.externalAccess.service.nodePort
Number of replicas and nodePort array length must be the same.
kafka: .Values.externalAccess.service.nodePorts
Number of replicas and nodePort array length must be the same. Currently: replicaCount = {{ $replicaCount }} and nodePorts = {{ $nodePortListLength }}
{{- end -}}
{{- end -}}