Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deployment script. #116

Merged
merged 1 commit into from
Aug 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion deployment/deployment.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 7 additions & 1 deletion deployment/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
```

## 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
```