EventStore / replicator

Real-time replication tool
https://replicator.eventstore.org
Apache License 2.0
20 stars 13 forks source link

Add Helm support for transform.js #74

Closed iblazhko closed 9 months ago

iblazhko commented 1 year ago

When we need to use custom JS transform in Replicator, we specify

transform:
  type: js
  config: ./transform.js

in replicator configuration.

Problem is that this configuration references an external file that is currently not in Helm chart. Helm does not allow to mount external files into pod at the time of the deployment, see Helm issue https://github.com/helm/helm/issues/3276.

We need to be able to specify JavaScript transfrom function when deploying Helm chart.

DEV-72