[stable/nats] Fix incorrect number conversion (#14891)

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
This commit is contained in:
Javier J. Salmerón-García
2019-06-19 00:48:31 -07:00
committed by Kubernetes Prow Robot
parent e22f4d562b
commit 5aafd4e751
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: nats
version: 2.5.7
version: 2.5.8
appVersion: 1.4.1
description: An open-source, cloud-native messaging system
keywords:
+3 -3
View File
@@ -37,13 +37,13 @@ data:
# Some system overides
{{- if .Values.maxConnections }}
max_connections: {{ .Values.maxConnections }}
max_connections: {{ int .Values.maxConnections }}
{{- end }}
{{- if .Values.maxControlLine }}
max_control_line: {{ .Values.maxControlLine }}
max_control_line: {{ int .Values.maxControlLine }}
{{- end }}
{{- if .Values.maxPayload }}
max_payload: {{ .Values.maxPayload }}
max_payload: {{ int .Values.maxPayload }}
{{- end }}
{{- if .Values.writeDeadline }}
write_deadline: {{ .Values.writeDeadline | quote }}