13 lines
251 B
YAML
13 lines
251 B
YAML
{{- if index .Values.nats.enabled }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nats-config
|
|
data:
|
|
nats.conf: |
|
|
port: 4222
|
|
http_port: 8222
|
|
|
|
max_connections: 200000 # optional but recommended
|
|
max_subscriptions: 200000
|
|
{{- end }} |