🎉 Hypermode Agents Beta: natural language agent creation, 2,000+ integrations, export to code Try Agents now! →
Deploy your self-hosted Dgraph cluster on Digital Ocean using Digital Ocean Kubernetes Service (DOKS)
doctl kubernetes cluster create dgraph-cluster \
--region nyc1 \
--version 1.28.2-do.0 \
--node-pool="name=worker-pool;size=s-4vcpu-8gb;count=3;auto-scale=true;min-nodes=3;max-nodes=9"
# Create namespace
kubectl create namespace dgraph
# Deploy with Helm
helm install dgraph dgraph/dgraph \
--namespace dgraph \
--set alpha.persistence.storageClass="dgraph-storage" \
--set zero.persistence.storageClass="dgraph-storage" \
--set alpha.persistence.size="500Gi" \
--set zero.persistence.size="100Gi"
Was this page helpful?