EventStore / replicator

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

Add checkpoint:path as a helm values option #78

Closed sharkztex closed 8 months ago

sharkztex commented 1 year ago

Is your feature request related to a problem? Please describe. The checkpoint:path is not a configurable option in the values file. https://github.com/EventStore/replicator/blob/master/charts/replicator/templates/configmap.yaml The created configmap defaults to path "./checkpoint".

Describe the solution you'd like Could this be configured so you can input your own path for ease of associating a pvc? Something like:

{{ toYaml .Values.replicator | indent 6 }}
      checkpoint:
        path: {{ .Values.replicator.checkpointlocation | default "./checkpoint" }}

DEV-271