diff --git a/bicep/mainTemplate.bicep b/bicep/mainTemplate.bicep index a5e3178..135334b 100644 --- a/bicep/mainTemplate.bicep +++ b/bicep/mainTemplate.bicep @@ -42,7 +42,7 @@ param insidersBuild bool = false // build.sh will override this, but for development please set this yourself as a parameter param branch string = 'main' // This needs to be updated on each release. Our Cloud.Project records require a release tag -param projectVersion string = '2026.03.10' +param projectVersion string = '2026.04.08' // Must be updated with each Open OnDemand release param oodProjectVersion string = '1.1.4' //Internal developer use only: set true use custom CycleCloud release build diff --git a/build.sh b/build.sh index 8ab1c4d..739c1e3 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ set -e # This script builds the ARM template and UI definition for the marketplace solution cd $(dirname $0)/ -VERSION="2026.03.10" +VERSION="2026.04.08" THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" diff --git a/project.ini b/project.ini index 18e27b0..2c74a94 100644 --- a/project.ini +++ b/project.ini @@ -1,5 +1,5 @@ [project] name = ccw label = Workspace for Slurm -version = 2026.03.10 +version = 2026.04.08 type = scheduler diff --git a/uidefinitions/createUiDefinition.json b/uidefinitions/createUiDefinition.json index 7a80308..b7b507b 100644 --- a/uidefinitions/createUiDefinition.json +++ b/uidefinitions/createUiDefinition.json @@ -5,7 +5,7 @@ "parameters": { "config": { "basics": { - "description": "Version **2026.03.10**: [Release Notes](https://learn.microsoft.com/azure/cyclecloud/release-notes/ccws/release-notes)", + "description": "Version **2026.04.08**: [Release Notes](https://learn.microsoft.com/azure/cyclecloud/release-notes/ccws/release-notes)", "resourceGroup": { "visible": false }, diff --git a/util/entra_predeploy.sh b/util/entra_predeploy.sh index 48ae3fc..b002390 100755 --- a/util/entra_predeploy.sh +++ b/util/entra_predeploy.sh @@ -17,7 +17,7 @@ if [ -n "${SERVICE_MANAGEMENT_REFERENCE}" ]; then DEPLOYMENT_PARAMS="${DEPLOYMENT_PARAMS} serviceManagementReference=${SERVICE_MANAGEMENT_REFERENCE}" fi -az deployment group create -g $ENTRA_MI_RESOURCE_GROUP --template-uri https://raw.githubusercontent.com/Azure/cyclecloud-slurm-workspace/refs/tags/2026.03.10/bicep/entra/ccwEntraApp.json --parameters ${DEPLOYMENT_PARAMS} --name ${ENTRA_DEPLOYMENT_NAME} +az deployment group create -g $ENTRA_MI_RESOURCE_GROUP --template-uri https://raw.githubusercontent.com/Azure/cyclecloud-slurm-workspace/refs/tags/2026.04.08/bicep/entra/ccwEntraApp.json --parameters ${DEPLOYMENT_PARAMS} --name ${ENTRA_DEPLOYMENT_NAME} ENTRA_TENANT_ID=$(az deployment group show --name $ENTRA_DEPLOYMENT_NAME --resource-group $ENTRA_MI_RESOURCE_GROUP --query properties.outputs.ccwEntraClientTenantId.value -o tsv) ENTRA_CLIENT_ID=$(az deployment group show --name $ENTRA_DEPLOYMENT_NAME --resource-group $ENTRA_MI_RESOURCE_GROUP --query properties.outputs.ccwEntraClientAppId.value -o tsv)