You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
I have found the following piece of code in the values.yaml. Will try it now.
initContainers: []
## init containers to run before the Neo4j replica pod e.g. to install custom plugins
## They can also be used to restore from last available backup, to ensure that newly joining
## core members have less TX history to catch up on before joining the cluster.
## Note that this is specifically *not* needed for APOC, which is included by default.
# - name: init-plugins
# image: "appropriate/curl:latest"
# imagePullPolicy: "IfNotPresent"
# volumeMounts:
# - name: plugins
# mountPath: /plugins
# command:
# - "/bin/sh"
# - "-c"
# - |
# curl -L https://somesite.com/path/to/plugin.jar -O
# cp plugin.jar /plugins/
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
According to the configuration documentation, the list of specifiable plugins can be found in https://github.com/neo4j/docker-neo4j/blob/master/neo4jlabs-plugins.json.
Digging deeper, it defines a mapping from neo4j version to specific plugin version.
My questions are:
The text was updated successfully, but these errors were encountered: