Merge pull request #53 from Azure/fix-dcr-targetting

Fix DCR targeting
This commit is contained in:
Nick Price 2022-09-06 12:48:18 +10:00 коммит произвёл GitHub
Родитель a1f2866add 8a6f5e5d87
Коммит 37f47dc5e7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -3012,8 +3012,7 @@
"arguments": "[concat(resourceGroup().name, ' ', variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].soeSku, ' ', concat('BuildOutput-',copyIndex()))]", "arguments": "[concat(resourceGroup().name, ' ', variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].soeSku, ' ', concat('BuildOutput-',copyIndex()))]",
"scriptContent": " "scriptContent": "
az login --identity az login --identity
az image builder run -g $1 -n $2 az image builder run -g $1 -n $2 --no-wait
az image builder show-runs -g $1 -n $2 --output-name $3 > $AZ_SCRIPTS_OUTPUT_PATH
", ",
"cleanupPreference": "OnSuccess", "cleanupPreference": "OnSuccess",
"retentionInterval": "P1D" "retentionInterval": "P1D"
@ -3025,14 +3024,14 @@
"type": "array", "type": "array",
"copy": { "copy": {
"count": "[length(parameters('buildImages'))]", "count": "[length(parameters('buildImages'))]",
"input": "[if(equals(variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].osType,'Windows'),reference(concat('AIBImageBuild-',copyIndex())).outputs.artifactId,null())]" "input": "[if(equals(variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].osType,'Windows'),resourceId('Microsoft.Compute/galleries/images','CloudSOESIG',variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].soeSku),null())]"
} }
}, },
"linuxImageIds": { "linuxImageIds": {
"type": "array", "type": "array",
"copy": { "copy": {
"count": "[length(parameters('buildImages'))]", "count": "[length(parameters('buildImages'))]",
"input": "[if(equals(variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].osType,'Linux'),reference(concat('AIBImageBuild-',copyIndex())).outputs.artifactId,null())]" "input": "[if(equals(variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].osType,'Linux'),resourceId('Microsoft.Compute/galleries/images','CloudSOESIG',variables('imagePropertiesSet')[parameters('buildImages')[copyIndex()]].soeSku),null())]"
} }
} }
} }