Skip to content

Latest commit

 

History

History
53 lines (45 loc) · 1.13 KB

File metadata and controls

53 lines (45 loc) · 1.13 KB

Example - Install Neo4j using manually created disks and a Persistent Volume Claim

This example uses manually provisioned cloud disks for the Neo4j storage volumes. The neo4j-persistent-volume chart is used to configure a PV and PVC for the disk. The neo4j chart then configures the statefulset to mount the PVC

The example will use the following Helm values

neo4j:
  name: volume-manual
volumes:
  data:
    mode: volume
    volume:
      persistentVolumeClaim:
        claimName: volume-manual-disk-pvc

Install in AWS

export AWS_ZONE=us-east-1a
./install-example-aws.sh $AWS_ZONE

Cleanup AWS

./cleanup-example-aws.sh

Install in GCP

export CLOUDSDK_CORE_PROJECT=my-gcp-project
export CLOUDSDK_COMPUTE_ZONE=my-zone
./install-example-gcp.sh

Cleanup GCP

./cleanup-example-gcp.sh

Install in Azure

export AKS_CLUSTER_NAME=my-neo4j-cluster
export AZURE_RESOURCE_GROUP=myResourceGroup
export AZURE_LOCATION=mylocation
./install-example-azure.sh $AKS_CLUSTER_NAME $AZURE_RESOURCE_GROUP $AZURE_LOCATION

Cleanup Azure

./cleanup-example-azure.sh