🎉 Hypermode Agents Beta: natural language agent creation, 2,000+ integrations, export to code Try Agents now! →
Deploy your self-hosted Dgraph cluster on Microsoft Azure using Azure Kubernetes Service (AKS)
az group create --name dgraph-rg --location eastus
# 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?