Use the information in this section to deploy Domino components in the Azure infrastructure.
-
Use the environment variables to set the values of IDs, names, and labels in your Azure environment. This simplifies the commands that you will use when installing the Domino components.
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> export DOMINO_VER=<Domino version to deploy> export QUAY_USERNAME=<quay.io username provided by Domino> export QUAY_PASSWORD=<quay.io password provided by Domino>
Note -
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
-
To create the
domino-platform
namespace, run:kubectl create namespace domino-platform
-
To set up your HTTPS certificate, run the following command to create a secret that uses the certificate for the domain name. This domain name allows the Domino management plane to be accessible through HTTPS:
kubectl -n domino-platform create secret tls my-cert --key=<path to your private key> --cert=<path to your cert>
The fleetcommand-agent
runs as a container. It installs and configures Domino components. The fleetcommand-agent
uses an installation template to gather the required parameters for the environment and sets them when installing Domino components.
The installation process with fleetcommand-agent
generates a blank installation template where you enter your environment parameters and then provide them to fleetcommand-agent
to perform the installation tasks.
-
If you aren’t logged into
quay.io
, execute:docker login -u $QUAY_USERNAME -p $QUAY_PASSWORD quay.io
-
Run the following command to generate a
domino.yml
template configuration file in the current working directory.Notedocker run --rm -it \ -v $(pwd):/install \ quay.io/domino/fleetcommand-agent:v64.2 \ init --file /install/domino.yml --version $DOMINO_VER --preset aks
Note
-
Open the
domino.yml
file and edit the attributes as follows:-
name
: The name of the deployment. This can’t be changed post-deployment. -
hostname
: The hostname for the Domino install (for example,domino.example.com
). -
storage_classes.block.type
:azure-disk
-
storage_classes.shared.type
:azure-file
-
blob_storage.projects.azure.account_name
: STORAGE_ACCOUNT_NAME value -
blob_storage.projects.azure.account_key
: STORAGE_ACCOUNT_KEY value -
blob_storage.projects.azure.container
: STORAGE_ACCOUNT_CONTAINER_NAME value -
blob_storage.logs.type
:shared
-
blob_storage.backups.type
:shared
-
blob_storage.backups.azure.account_name
: STORAGE_ACCOUNT_NAME value -
blob_storage.backups.azure.account_key
: STORAGE_ACCOUNT_KEY value -
blob_storage.backups.azure.container
: STORAGE_ACCOUNT_CONTAINER_NAME value -
helm.image_registries.*.username
: Yourquay.io
username. -
helm.image_registries.*.password
: Yourquay.io
password. -
image_building.cloud_registry_auth.azure.tenant_id
: TENANT_ID value -
image_building.cloud_registry_auth.azure.client_id
: IMAGE_BUILD_CLIENT_ID value -
image_building.cloud_registry_auth.azure.workload_identity
: IMAGE_BUILD_WORKLOAD_IDENTITY value -
image_building.cloud_registry_auth.azure.client_secret
: optional CLIENT_SECRET value -
internal_docker_registry
:null
-
external_docker_registry
: The container registry DNS name.
Note -
-
Add the following code to the end of the file.
release_overrides: nginx-ingress: chart_values: controller: kind: Deployment hostNetwork: false service: enabled: true type: LoadBalancer annotations: service.beta.kubernetes.io/azure-load-balancer-health-probe-request-path: "/healthz" extraArgs: default-ssl-certificate: domino-platform/my-cert
Note
fleetcommand-agent
fleetcommand-agent
installs and configures Domino components.
It uses the installation template to gather the required parameters for the environment and sets them when installing Domino components.
To install Domino on the infrastructure you prepared, run the following:
curl -o fleetcommand-agent-install.sh https://docs.dominodatalab.com/attachments/fleetcommand-agent-install.sh
bash fleetcommand-agent-install.sh $DOMINO_VER
See fleetcommand-agent-install.sh Downloads for more information.
If you use your own NGINX ingress controller by specifying ingress_controller.install = false
, then you need to create a network policy in the Domino platform
and compute
namespace.
Here is an example of a network policy that allows ingress from the nginx namespace:
kubectl -n <domino-namespace> apply -f - <<EOF
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: external-nginx
spec:
ingress:
- from:
- namespaceSelector:
matchLabels:
kubernetes.io/metadata.name: nginx
podSelector: {}
policyTypes:
- Ingress
EOF
Run the following to get the external IP to access your instance’s Domino management plane:
kubectl -n domino-platform get svc nginx-ingress-controller
You can use this to update your DNS records accordingly.
+ If you use Azure Front Door or a similar CDN that doesn’t support WebSockets, you must route incoming traffic so that it skips the CDN.
+ As an alternative, Application Gateway has native WebSocket support.
-
Go to
https://<YOUR-DOMAIN>/auth/
-
Login with the username
keycloak
and the password from thekeycloak-http
secret in thedomino-platform
namespace. -
Use the following command to get the password:
echo -e "\nyour password is: $(kubectl get secret keycloak-http -n domino-platform --template={{.data.password}} | base64 -d)\n"
-
Go to Users in the navigation pane and click Add User.
-
Enter the username, first name, last name, and email address, and then click Save.
-
Go to the Credentials tab and add a password.
-
Optional: Disable Temporary.
-
Click Set Password.
-
Go to Role Mappings.
-
From Client Roles, select domino-play.
-
Select the User role and add it to your user.
-
Go to the main page for your Domino deployment (for example,
https://\<YOUR-DOMAIN\>
) and sign in with your new Domino user. -
Go to Environments > Domino Standard Environment Py3.8 R4.1 > Revisions and make sure the revision is active. If not, use Build Logs to try to solve the problem.
-
Go to Projects > Quick-start > Workspaces and launch a new workspace using Jupyter (this can take a while).
-
When the new workspace is created open
main.ipynb
and confirm that you can execute the script without errors.
Use Keycloak to enable user registration, so users can access your fresh Domino install. Keycloak is a user authentication service that runs on a pod in your cluster.