"vscode:/vscode.git/clone" did not exist on "1ab2fe1b0e2a28d99bbdd53a15925bcb6ef94464"
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: ...@@ -90,7 +90,7 @@ spec:
{{- end }} {{- end }}
{{- if .Values.natsAddr }} {{- if .Values.natsAddr }}
- --natsAddr={{ .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 - --natsAddr=nats://{{ .Release.Name }}-nats.{{ .Release.Namespace }}.svc.cluster.local:4222
{{- end }} {{- end }}
{{- if .Values.etcdAddr }} {{- if .Values.etcdAddr }}
......
...@@ -136,6 +136,11 @@ metricsService: ...@@ -136,6 +136,11 @@ metricsService:
natsAddr: "" natsAddr: ""
etcdAddr: "" etcdAddr: ""
nats:
# Whether the NATS is enabled
enabled: true
modelExpressURL: "" modelExpressURL: ""
# Webhook configuration # Webhook configuration
......
...@@ -27,6 +27,10 @@ dynamo-operator: ...@@ -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" # -- etcd server address for operator state storage (leave empty to use the bundled etcd chart). Format: "http://hostname:port" or "https://hostname:port"
etcdAddr: "" 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). # -- 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: "" modelExpressURL: ""
# -- Namespace access controls for the operator # -- 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