> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domino.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Prerequisites

To install and configure Domino in your Azure account, you must have:

* An Azure subscription with enough quota to create:

  * 4 D8s\_v4 virtual machines or a [similar power](https://docs.microsoft.com/azure/virtual-machines/sizes) option.

  * NC6s\_v3 or similar level virtual machines, if you want to use GPU nodes.

* `quay.io` credentials provided by Domino.

* An SSL certificate for your domain.

* A Unix or Linux terminal with the following:

  * [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli) installed and signed into your Azure account, with a user that has an [owner role](https://docs.microsoft.com/azure/role-based-access-control/rbac-and-directory-admin-roles#azure-roles) on the subscription.

  * [Terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli) installed.

  * [Kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/) installed.

  * [Docker](https://docs.docker.com/engine/install/) installed.

  * The [ddlctl command line](/6.3/admin/installation/platform-operator/ddlctl) installed.

* [Platform Operator](/6.3/admin/installation/platform-operator) installed.

## Configure cluster access

1. Run the following commands:

   ```shell theme={null}
   export SUB_ID=<ID of the subscription where AKS was deployed>
   export RG_NAME=<Name of the resource group where AKS was deployed>
   export CLUSTER_NAME=<AKS cluster name>
   ```

2. To retrieve credentials for the Kubernetes cluster, run the following command to add the AKS credentials to your `kubectl config` file:

   ```shell theme={null}
   az aks get-credentials --subscription $SUB_ID --resource-group $RG_NAME --name $CLUSTER_NAME
   ```
