Skip to main content
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:
  • Platform Operator installed.

Configure cluster access

  1. 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>
    
  2. 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