Does Bitnami Neo4j Helm chart values.yaml file supports enabling APOC plugin

44 Views Asked by At

Our team experiments with deploying Neo4j into our Kubernetes environment via Bitnami's Helm Chart.

We rely on this source for our Helm charts.

The Neo4j version that we currently use is: 4.4.19-enterprise.

The Documentation suggests that starting from Neo4j 4.1, the APOC core functions are included with all Neo4j distributions, so I expect our image to contain the configuration to enable it. However there is no clear guide regarding how to enable it as part of a Bitnami's Helm chart, which is a reliable and widely used source.

1

There are 1 best solutions below

3
Christophe Willemsen On

Bitnami doesn't have a chart for Neo4j, so unless you have a link to it I suggest you rephrase your question.

Following the docs https://neo4j.com/docs/operations-manual/current/kubernetes/plugins/ , you can enable the plugins with the NEO4J_PLUGINS environment variable, it works exactly the same as if you would enable plugins with a vanilla Neo4j container :

Neo4j 5

env:
    NEO4J_PLUGINS: '["graph-data-science", "apoc"]'

For Neo4j 4

env:
    NEO4JLABS_PLUGINS: '["graph-data-science", "apoc"]'