Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-27-2021 06:30 AM
Hello,
I deployed Neo4j 3.5 in a kubernetes cluster by using an helm chart.
In my installation I need both apoc than algo plugin.
I successfull installed plugins, but when I tried to run procedure to calculate pageRank I ran into sandbox error
Here is my YAML file for helm
acceptLicenseAgreement: "yes"
neo4jPassword: "..."
imageTag: 3.5.9-enterprise
# Cores
core:
envFrom: []
resources: {}
standalone: true
numberOfServers: 3
persistentVolume:
enabled: true
initContainers:
- name: init-plugins
image: "appropriate/curl:latest"
imagePullPolicy: "IfNotPresent"
volumeMounts:
- name: plugins
mountPath: /plugins
command:
- "/bin/sh"
- "-c"
- |
curl -L https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/3.5.0.11/apoc-3.5.0.11-all.jar -O
cp apoc-3.5.0.11-all.jar /plugins/ && curl -L https://github.com/neo4j-contrib/neo4j-graph-algorithms/releases/download/3.5.4.0/graph-algorithms-algo-3.5.4.0.jar -O
cp graph-algorithms-algo-3.5.4.0.jar /plugins/
extraVars:
- name: NEO4J_dbms_security_procedures_unrestricted
value: "algo.*"
What am I doing wrong?
All the sessions of the conference are now available online