Skip to content

Deploying Cosine

With configuration complete, you can deploy the Helm chart to your cluster and let the platform come online.

In order to deploy Cosine you are going to use be using Helm and therefore need access your cluster. You can use the Azure CLI to obtian the cluster context:

Terminal window
export RESOURCE_GROUP=cosine-azure-cluster-rg
export CLUSTER_NAME=cosine-azure-cluster-aks
az aks get-credentials --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME

Cosine’s Helm charts are hosted in an OCI-compliant registry. Log in and set an environment variable to make it easy to reference the charts:

Terminal window
helm registry login registry.cosine.enterprises
export COSINE_CHARTS=oci://registry.cosine.enterprises/azure/helm/cosine

For a first install, run:

Terminal window
helm install cosine $COSINE_CHARTS -f values.yaml

To upgrade an existing deployment, run:

Terminal window
helm upgrade cosine $COSINE_CHARTS -f values.yaml

You can use --version <IMAGE_TAG> to use a specific version of the charts.