-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstandalone-plugin-example.yaml
More file actions
47 lines (40 loc) · 1014 Bytes
/
standalone-plugin-example.yaml
File metadata and controls
47 lines (40 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Example Neo4jPlugin for Neo4jEnterpriseStandalone
apiVersion: neo4j.neo4j.com/v1alpha1
kind: Neo4jPlugin
metadata:
name: standalone-gds-plugin
namespace: default
spec:
# References a Neo4jEnterpriseStandalone deployment
clusterRef: my-standalone
# Plugin configuration
name: graph-data-science
version: "2.10.0"
enabled: true
# Plugin source - community repository
source:
type: community
# Plugin dependencies
dependencies:
- name: apoc
versionConstraint: ">=5.26.0"
optional: false
# Plugin configuration
config:
"gds.enterprise.license_file": "/licenses/gds.license"
# License configuration
license:
keySecret: gds-license-secret
licenseFile: "/licenses/gds.license"
# Security configuration
security:
allowedProcedures:
- "gds.*"
- "apoc.load.*"
securityPolicy: "restricted"
sandbox: true
# Resource requirements for the plugin
resources:
memoryLimit: "1Gi"
cpuLimit: "500m"
threadPoolSize: 4