Removed limit on max number of channels in NATS Streaming deployment (#482)

This commit is contained in:
Erwin van Eyk
2018-02-06 22:30:35 +08:00
committed by Ta-Ching Chen
parent 3f81510729
commit a033d3c432
+5 -1
View File
@@ -460,7 +460,11 @@ spec:
containers:
- name: nats-streaming
image: nats-streaming
args: ["--cluster_id", "{{ .Values.nats.clusterID }}", "--auth", "{{ .Values.nats.authToken }}"]
args: [
"--cluster_id", "{{ .Values.nats.clusterID }}",
"--auth", "{{ .Values.nats.authToken }}",
"--max_channels", "0"
]
ports:
- containerPort: 4222
hostPort: 4222