Unverified Commit 6df20955 authored by Biswa Panda's avatar Biswa Panda Committed by GitHub
Browse files

allow disabling nats (#5035)

parent e6a6a1f2
......@@ -90,7 +90,7 @@ spec:
{{- end }}
{{- if .Values.natsAddr }}
- --natsAddr={{ .Values.natsAddr }}
{{- else }}
{{- else if and .Values.nats .Values.nats.enabled }}
- --natsAddr=nats://{{ .Release.Name }}-nats.{{ .Release.Namespace }}.svc.cluster.local:4222
{{- end }}
{{- if .Values.etcdAddr }}
......
......@@ -136,6 +136,11 @@ metricsService:
natsAddr: ""
etcdAddr: ""
nats:
# Whether the NATS is enabled
enabled: true
modelExpressURL: ""
# Webhook configuration
......
......@@ -27,6 +27,10 @@ dynamo-operator:
# -- etcd server address for operator state storage (leave empty to use the bundled etcd chart). Format: "http://hostname:port" or "https://hostname:port"
etcdAddr: ""
nats:
# -- Whether the NATS is enabled
enabled: true
# -- URL for the Model Express server if not deployed by this helm chart. This is ignored if Model Express server is installed by this helm chart (global.model-express.enabled is true).
modelExpressURL: ""
# -- Namespace access controls for the operator
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment