githubEdit

Azure

Provision a managed Kubernetes cluster on Azure AKS ready for Pinot.

Outcome

Create an Azure Kubernetes Service cluster with the required tooling, ready to deploy Apache Pinot.

Prerequisites

  • An Azure account

  • The following CLI tools installed (see steps below)

Steps

1. Install tooling

kubectl

brew install kubernetes-cli

Verify:

kubectl version

Helm

brew install kubernetes-helm

Verify:

Azure CLI

Follow the Azure CLI installation guidearrow-up-right or run:

2. Log in to Azure

3. Create a resource group

4. Create an AKS cluster

The following creates a 3-node cluster named pinot-quickstart:

5. Connect to the cluster

Verify

You should see your worker nodes listed and in Ready status.

Cleaning up

To delete the cluster when you are done:

Next step

Your cluster is ready. Continue to Kubernetes install to deploy Pinot.

Last updated

Was this helpful?