mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/nats] Fix incorrect number conversion (#14891)
Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
e22f4d562b
commit
5aafd4e751
@@ -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:
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user