New to KubeDB? Please start here.

Overview

KubeDB supports graph database deployment with Neo4j using the Neo4j CRD.

Supported Neo4j Features

FeaturesAvailability
Standalone provisioning
Cluster provisioning
Monitoring
TLS
Ops Requests

Supported Ops Requests

  • Reconfigure
  • HorizontalScaling
  • VerticalScaling
  • VolumeExpansion
  • StorageMigration
  • UpdateVersion
  • ReconfigureTLS
  • RotateAuth
  • Restart

Example Neo4j Manifest

apiVersion: kubedb.com/v1alpha2
kind: Neo4j
metadata:
  name: neo4j-test
  namespace: demo
spec:
  replicas: 3
  deletionPolicy: WipeOut
  version: "2025.12.1"
  storage:
    storageClassName: local-path
    accessModes:
      - ReadWriteOnce
    resources:
      requests:
        storage: 2Gi

User Guide