Commit 53307dd9 authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

add password/user for rabbitmq

parent da176896
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.0
version: 0.2.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
+1 −1
Original line number Diff line number Diff line
@@ -13,5 +13,5 @@ data:
    staging_directory: {{ .Values.pulsar.stagingDirectory }}
    persistence_directory: {{ .Values.pulsar.persistenceDirectory }}
{{- if .Values.pulsar.enableRabbitMq  }}
    message_queue_url: {{ .Values.pulsar.rabbitMqUrl }}
    message_queue_url: amqp://{{ .Values.pulsar.rabbitMqUser }}:{{ .Values.pulsar.rabbitMqPassword }}@{{ .Values.pulsar.rabbitMqUrl }}
{{- end }}
+3 −1
Original line number Diff line number Diff line
@@ -11,6 +11,8 @@ pulsar:
      type: queued_python
      num_concurrent_jobs: 1
  enableRabbitMq: false
  rabbitMqUrl: amqp://guest:guest@localhost:5672
  rabbitMqUser: guest
  rabbitMqUrl: localhost:5672
  rabbitMqPassword: guest
  stagingDirectory: "/pulsar/files/staging"
  persistenceDirectory: "/pulsar/files/persistent"
 No newline at end of file