RocketChat / helm-charts

Repository for RocketChat helm charts
36 stars 67 forks source link

Missing environment values for microservices deployment #82

Open matthias4217 opened 1 year ago

matthias4217 commented 1 year ago

According to the documentation,microservices deployment should have the following environment values :

Variable Value Description
TRANSPORTER nats://nats:4222 NATS address
DISABLE_DB_WATCH true Disables internal DB watcher and rely on mongodb-stream-hub
DISABLE_PRESENCE_MONITOR true Disables presence monitoring and rely on the presence-service
INTERNAL_SERVICES_ONLY true Do not run external services on rocket.chat process

However, only TRANSPORTER is added in the following block, thus requiring to manually set environment variables in values :

extraEnv:
  DISABLE_DB_WATCH: true
  DISABLE_PRESENCE_MONITOR: true
  INTERNAL_SERVICES_ONLY: true

Could these three be added to the same block ?