core-configmap.yaml 649 B

123456789101112131415
  1. # This ConfigMap gets passed to all core cluster members to configure them.
  2. # Take note that some networking settings like internal hostname still get configured
  3. # when the pod starts, but most non-networking specific configs can be tailored here.
  4. apiVersion: v1
  5. kind: ConfigMap
  6. metadata:
  7. name: {{ template "neo4j.coreConfig.fullname" . }}
  8. data:
  9. NEO4J_dbms_directories_logs: "{{ .Values.core.persistentVolume.mountPath }}/logs"
  10. {{- if .Values.core.standalone }}
  11. # https://neo4j.com/docs/operations-manual/current/reference/configuration-settings/#config_dbms.mode
  12. NEO4J_dbms_mode: SINGLE
  13. {{- else }}
  14. NEO4J_dbms_mode: CORE
  15. {{- end }}