Deploying Cosine
With configuration complete, you can deploy the Helm chart to your cluster and let the platform come online.
Get cluster credentials
Section titled “Get cluster credentials”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:
export RESOURCE_GROUP=cosine-azure-cluster-rgexport CLUSTER_NAME=cosine-azure-cluster-aks
az aks get-credentials --resource-group $RESOURCE_GROUP --name $CLUSTER_NAMELog in to the registry
Section titled “Log in to the registry”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:
helm registry login registry.cosine.enterprisesexport COSINE_CHARTS=oci://registry.cosine.enterprises/azure/helm/cosineInstall or upgrade
Section titled “Install or upgrade”For a first install, run:
helm install cosine $COSINE_CHARTS -f values.yamlTo upgrade an existing deployment, run:
helm upgrade cosine $COSINE_CHARTS -f values.yamlYou can use
--version <IMAGE_TAG>to use a specific version of the charts.