custom-core-configmap.yaml 1.6 KB

12345678910111213141516171819202122232425
  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. #
  5. # When your pods start, you will inherit the config in common-configmap.yaml, so you don't
  6. # need to repeat any of that here, just focus on overrides that are different than what's there.
  7. apiVersion: v1
  8. kind: ConfigMap
  9. metadata:
  10. name: "${DEPLOYMENT}-neo4j-externally-addressable-config"
  11. data:
  12. NEO4J_ACCEPT_LICENSE_AGREEMENT: "yes"
  13. NEO4J_dbms_mode: CORE
  14. ${DEPLOYMENT}_neo4j_core_0_NEO4J_dbms_default__advertised__address: $ADDR0
  15. ${DEPLOYMENT}_neo4j_core_0_NEO4J_dbms_connector_bolt_advertised__address: $ADDR0:7687
  16. ${DEPLOYMENT}_neo4j_core_0_NEO4J_dbms_connector_http_advertised__address: $ADDR0:7474
  17. ${DEPLOYMENT}_neo4j_core_0_NEO4J_dbms_connector_https_advertised__address: $ADDR0:7473
  18. ${DEPLOYMENT}_neo4j_core_1_NEO4J_dbms_default__advertised__address: $ADDR1
  19. ${DEPLOYMENT}_neo4j_core_1_NEO4J_dbms_connector_bolt_advertised__address: $ADDR1:7687
  20. ${DEPLOYMENT}_neo4j_core_1_NEO4J_dbms_connector_http_advertised__address: $ADDR1:7474
  21. ${DEPLOYMENT}_neo4j_core_1_NEO4J_dbms_connector_https_advertised__address: $ADDR1:7473
  22. ${DEPLOYMENT}_neo4j_core_2_NEO4J_dbms_default__advertised__address: $ADDR2
  23. ${DEPLOYMENT}_neo4j_core_2_NEO4J_dbms_connector_bolt_advertised__address: $ADDR2:7687
  24. ${DEPLOYMENT}_neo4j_core_2_NEO4J_dbms_connector_http_advertised__address: $ADDR2:7474
  25. ${DEPLOYMENT}_neo4j_core_2_NEO4J_dbms_connector_https_advertised__address: $ADDR2:7473