From 9097f09717be472c412fc9aa0a78a1cd21773314 Mon Sep 17 00:00:00 2001 From: Prakash Duggaraju Date: Fri, 4 Aug 2023 17:01:48 -0700 Subject: [PATCH] Fix deployment script. Link to README.md --- README.md | 4 ++++ deployment/deployment.bicep | 2 +- deployment/deployment.md | 8 +++++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 88c6f86..f164e45 100644 --- a/README.md +++ b/README.md @@ -142,3 +142,7 @@ To analyze, you will use the analyze command, an example is The html file and the log file location will be reported at the end of execution. You can look at the help for analyze command to further customization. + +# Deployment +## Running in Azure +The quickest way to run the tool in Azure is use the deployment scripts. See [deployment.md](deployment/deployment.md) for more instruction how to quikcly run it. \ No newline at end of file diff --git a/deployment/deployment.bicep b/deployment/deployment.bicep index 2d299de..36aad06 100644 --- a/deployment/deployment.bicep +++ b/deployment/deployment.bicep @@ -107,7 +107,7 @@ module keyVaultRoleAssignment 'roleassignment.bicep' = if (encrypt) { // Default argumetns to the migration tool. var defaultArguments = [ 'dotnet' - 'MediaMigrate.dll' + 'AMSMigrate.dll' 'assets' '-s' subscription().subscriptionId diff --git a/deployment/deployment.md b/deployment/deployment.md index d0ee9f6..2b0c931 100644 --- a/deployment/deployment.md +++ b/deployment/deployment.md @@ -22,4 +22,10 @@ param storageAccountRG = 'storageresourcegroup' ## Deploy the resource. ```bash az deployment group create --template-file deployment.bicep --resource-group migration --parameters parameters.bicepparam -``` \ No newline at end of file +``` + +## Monitor progress +While the ACI is running you can mointor the progress of the tool by running. +```bash +az container logs --follow -g migration -n azure-media-migration +```