readreplicas-configmap.yaml 522 B

123456789101112
  1. {{- if not .Values.core.standalone }}
  2. # This ConfigMap gets passed to all core cluster members to configure them.
  3. # Take note that some networking settings like internal hostname still get configured
  4. # when the pod starts, but most non-networking specific configs can be tailored here.
  5. apiVersion: v1
  6. kind: ConfigMap
  7. metadata:
  8. name: {{ template "neo4j.replicaConfig.fullname" . }}
  9. data:
  10. NEO4J_dbms_directories_logs: "{{ .Values.readReplica.persistentVolume.mountPath }}/logs"
  11. NEO4J_dbms_mode: READ_REPLICA
  12. {{- end }}