Skip to content

Commit fc32d39

Browse files
Merge pull request #292065 from spelluru/asafreshness1217
ASA CI/CD - Freshness, Acrolynx, Learn Linter
2 parents f3d6db3 + 4f3e3ea commit fc32d39

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

articles/stream-analytics/set-up-cicd-pipeline.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ author: alexlzx
55
ms.author: zhenxilin
66
ms.service: azure-stream-analytics
77
ms.topic: how-to
8-
ms.date: 09/08/2023
8+
ms.date: 12/17/2024
9+
# Customer intent: I want to know how to set up a CI/CD pipeline for an Azure Stream Analytics job in Azure DevOps.
910
---
1011

1112
# Use Azure DevOps to create a CI/CD pipeline for a Stream Analytics job
@@ -173,7 +174,7 @@ Open a web browser and navigate to your Azure Stream Analytics Visual Studio Cod
173174
### Add deploy tasks
174175

175176
> [!NOTE]
176-
> The `Override template parameters` is not applicable for ARM --v2 builds since parameters are passed as objects. To address this, it's recommended to include a PowerShell script in your pipeline to read the parameter file as JSON and make the necessary parameter modifications.
177+
> The `Override template parameters` is not applicable for ARM v2 builds since parameters are passed as objects. To address this, it's recommended to include a PowerShell script in your pipeline to read the parameter file as JSON and make the necessary parameter modifications.
177178
>
178179
> For more guidance on adding the PowerShell script, please refer to [ConvertFrom-Json](/powershell/module/microsoft.powershell.utility/convertfrom-json) and [Update Object in JSON file](https://stackoverflow.com/questions/65753594/update-object-in-json-file-using-powershell).
179180

@@ -189,9 +190,9 @@ Open a web browser and navigate to your Azure Stream Analytics Visual Studio Cod
189190
|Resource group| Choose a name for the test resource group that will contain your Stream Analytics job.|
190191
|Location|Choose the location of your test resource group.|
191192
|Template location| Linked artifact|
192-
|Template| $(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.json |
193-
|Template parameters|$(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.parameters.json |
194-
|Override template parameters|-<arm_template_parameter> "your value". You can define the parameters using **Variables**.|
193+
|Template| `$(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.json` |
194+
|Template parameters|`$(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.parameters.json` |
195+
|Override template parameters|`-<arm_template_parameter> "your value"`. You can define the parameters using **Variables**.|
195196
|Deployment mode|Incremental|
196197

197198
3. From the tasks dropdown, select **Deploy job to production environment**.
@@ -206,9 +207,9 @@ Open a web browser and navigate to your Azure Stream Analytics Visual Studio Cod
206207
|Resource group| Choose a name for the production resource group that will contain your Stream Analytics job.|
207208
|Location|Choose the location of your production resource group.|
208209
|Template location| *Linked artifact*|
209-
|Template| $(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.json |
210-
|Template parameters|$(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.parameters.json |
211-
|Override template parameters|-<arm_template_parameter> "your value"|
210+
|Template| `$(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.json` |
211+
|Template parameters|`$(System.DefaultWorkingDirectory)/_azure-streamanalytics-cicd-demo-CI-Deploy/drop/myASAProject.JobTemplate.parameters.json` |
212+
|Override template parameters|`-<arm_template_parameter> "your value"`|
212213
|Deployment mode|Incremental|
213214

214215
### Create a release
@@ -217,7 +218,7 @@ To create a release, select **Create release** in the top-right corner.
217218

218219
:::image type="content" source="media/set-up-cicd-pipeline/create-release.png" alt-text="Create a release using Azure Pipelines":::
219220

220-
## Next steps
221+
## Related content
221222

222223
* [Continuous integration and Continuous deployment for Azure Stream Analytics](cicd-overview.md)
223224
* [Automate build, test, and deployment of an Azure Stream Analytics job using CI/CD tools](cicd-tools.md)

0 commit comments

Comments
 (0)