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.
When we need to use custom JS transform in Replicator, we specify
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