From df2949a6ca4d5eafbdf255e29dceedee267c10f4 Mon Sep 17 00:00:00 2001 From: roschaefer Date: Mon, 19 Aug 2019 20:02:46 +0200 Subject: [PATCH] Configure dbms.security.procedures Bug: > apoc.cluster.graph is unavailable because it is sandboxed and has dependencies > outside of the sandbox. Sandboxing is controlled by the > dbms.security.procedures.unrestricted setting See: https://stackoverflow.com/a/48773575 --- deployment/human-connection/deployment-neo4j.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deployment/human-connection/deployment-neo4j.yaml b/deployment/human-connection/deployment-neo4j.yaml index afc03ca0d..2fcba9061 100644 --- a/deployment/human-connection/deployment-neo4j.yaml +++ b/deployment/human-connection/deployment-neo4j.yaml @@ -32,6 +32,8 @@ value: 1G - name: NEO4J_dbms_memory_heap_max__size value: 1G + - name: NEO4J_dbms_security_procedures_unrestricted + value: "algo.*,apoc.*" envFrom: - configMapRef: name: configmap