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 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 installed and signed into your Azure account, with a user that has an owner role on the subscription.
-
Terraform installed.
-
Kubectl installed.
-
Docker installed.
-
The ddlctl command line installed.
-
-
Platform Operator installed.
-
Run the following commands:
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>
-
To retrieve credentials for the Kubernetes cluster, run the following command to add the AKS credentials to your
kubectl config
file:az aks get-credentials --subscription $SUB_ID --resource-group $RG_NAME --name $CLUSTER_NAME