Skip to content

Commit 819876e

Browse files
committed
review corrections
1 parent 5de6547 commit 819876e

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

articles/batch/batch-ci-cd.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
title: Use Azure Pipelines to build and deploy an HPC solution
33
description: Use Azure Pipelines CI/CD build and release pipelines to deploy Azure Resource Manager templates for an Azure Batch high performance computing (HPC) solution.
4-
author: chrisreddington
5-
ms.author: chredd
64
ms.date: 04/12/2023
75
ms.topic: how-to
86
---
@@ -387,21 +385,19 @@ The following example demonstrates how to deploy an infrastructure and applicati
387385
388386
1. Select the **Variables** tab. Create the following variables in your pipeline so you don't have to reenter the same information into multiple tasks.
389387
390-
- Replace the placeholders in **StorageContainerSasToken** and **StorageContainerUri** with the value you enter into
391-
392388
|Name|Value|
393389
|----|-----|
394390
|**applicationStorageAccountName**|Name for the storage account to hold the HPC application binaries.|
395391
|**batchAccountApplicationName**|Name for the application in the Batch account.|
396392
|**batchAccountName**|Name for the Batch account.|
397393
|**batchAccountPoolName**|Name for the pool of virtual machines (VMs) to do the processing.|
398-
|**batchApplicationId**|Unique ID for the Batch application, of the form: `/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Batch/batchAccounts/<batchAccountName>/applications/<batchAccountApplicationName>`. Replace the `<subscriptionId>` placeholder with your Azure subscription ID, and the other placeholders with the values you set for the other variables in this list.|
394+
|**batchApplicationId**|Unique ID for the Batch application, of the form: */subscriptions/\<subscriptionId>/resourceGroups/\<resourceGroupName>/providers/Microsoft.Batch/batchAccounts/\<batchAccountName>/applications/\<batchAccountApplicationName>*. Replace the `<subscriptionId>` placeholder with your Azure subscription ID, and the other placeholders with the values you set for the other variables in this list.|
399395
|**batchApplicationVersion**|Semantic version of your Batch application, in this case *4.3.1*.|
400396
|**location**|Azure region for the resources to be deployed.|
401397
|**resourceGroupName**|Name for the resource group to deploy resources in.|
402398
|**storageAccountName**|Name for the storage account to hold the linked ARM templates.|
403-
|**StorageContainerSasToken**|`$(<Azure File Copy output variables reference name>.StorageContainerSasToken)`. Replace the `<Azure File Copy output variables reference name` placeholder with the **Reference name** value you configure in the **Output Variables** section of the following **Azure File Copy** step.
404-
|**StorageContainerUri**|`$(<Azure File Copy output variables reference name>.StorageContainerUri)`. Replace the `<Azure File Copy output variables reference name>` placeholder with the **Reference name** value you configure in the **Output Variables** section of the following Azure File Copy step.
399+
|**StorageContainerSasToken**|`$(<referenceName>.StorageContainerSasToken)`. Replace the `<referenceName` placeholder with the **Reference name** value you configure in the **Output Variables** section of the following **Azure File Copy** step.
400+
|**StorageContainerUri**|`$(<referenceName>.StorageContainerUri)`. Replace the `<referenceName>` placeholder with the **Reference name** value you configure in the **Output Variables** section of the Azure File Copy step.
405401

406402
![Screenshot showing variables set for the Azure Pipelines release.](media/batch-ci-cd/variables.png)
407403

@@ -433,6 +429,8 @@ For each new task that the following steps specify:
433429

434430
![Screenshot showing the tasks used to release the HPC application to Azure Batch.](media/batch-ci-cd/release-pipeline.png)
435431

432+
Create the tasks as follows:
433+
436434
1. Select the **Download Pipeline Artifacts** task, and set the following properties:
437435
- **Display name**: Enter *Download ApplicationPackage to Agent*.
438436
- **Artifact name**: Enter *hpc-application*.

0 commit comments

Comments
 (0)