You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/includes/automatic-redemption-include.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ The following table shows the consent prompt behavior for source tenant users wh
52
52
||| Not suppressed |
53
53
||| Not suppressed |
54
54
|**Inbound**|**Outbound**||
55
-
|||Suppressed|
55
+
|||Not suppressed|
56
56
||| Not suppressed |
57
57
||| Not suppressed |
58
58
||| Not suppressed |
Copy file name to clipboardExpand all lines: articles/stream-analytics/set-up-cicd-pipeline.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ author: alexlzx
6
6
ms.author: zhenxilin
7
7
ms.service: stream-analytics
8
8
ms.topic: how-to
9
-
ms.date: 12/27/2022
9
+
ms.date: 09/08/2023
10
10
---
11
11
12
12
# Use Azure DevOps to create a CI/CD pipeline for a Stream Analytics job
@@ -80,9 +80,14 @@ Use following steps if you need to use hosted-Linux agent:
80
80
2. On the **Tasks** page, selectthe plus sign next to **Agent job 1**. Search for**Command line**.
81
81
82
82
3. Give the task a **Display name** and enter the following script. Modify the script with your repository name and project name.
83
+
84
+
> [!NOTE]
85
+
> It's highly recommended to use the `build --v2` to generate ARM template for deployment. The new ARM template has fewer parameters while preserving the same functionality as the previous version.
86
+
>
87
+
> Please note that the older ARM template will soon be deprecated, only templates created using `build --v2` will receive updates and bug fixes.
The image uses a Stream Analytics Visual Studio Code project as an example.
@@ -168,6 +173,11 @@ Open a web browser and navigate to your Azure Stream Analytics Visual Studio Cod
168
173
169
174
### Add deploy tasks
170
175
176
+
> [!NOTE]
177
+
> The `Override template parameters` is not applicable forARM --v2 builds since parameters are passed as objects. To address this, it's recommended to include a PowerShell scriptin your pipeline to read the parameter file as JSON and make the necessary parameter modifications.
178
+
>
179
+
> For more guidance on adding the PowerShell script, please refer to [ConvertFrom-Json](https://learn.microsoft.com/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).
180
+
171
181
1. From the tasks dropdown, select**Deploy job to test environment**.
172
182
173
183
2. Select the **+** next to **Agent job** and search for**ARM template deployment**. Enter the following parameters:
Copy file name to clipboardExpand all lines: articles/virtual-machines/linux/imaging.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
title: Overview of creating Linux images for Azure
3
3
description: How to bring your Linux VM images or create new images to use in Azure.
4
-
author: danielsollondon
4
+
author: cynthn
5
5
ms.service: virtual-machines
6
6
ms.subservice: imaging
7
7
ms.collection: linux
8
8
ms.topic: overview
9
9
ms.workload: infrastructure
10
-
ms.date: 06/22/2020
11
-
ms.author: danis
10
+
ms.date: 09/01/2023
11
+
ms.author: cynthn
12
12
ms.reviewer: cynthn
13
13
14
14
---
@@ -55,9 +55,9 @@ These are [prerequisites](./create-upload-generic.md) for creating an image.
55
55
56
56
57
57
### Specialized images
58
-
These are images that are completely configured and do not require VM or special parameters. The platform will just turn the VM on and you will need to handle uniqueness within the VM, like setting a hostname, to avoid DNS conflicts on the same VNET.
58
+
These are images that are completely configured and don't require VM or special parameters. The platform will just turn the VM on and you will need to handle uniqueness within the VM, like setting a hostname, to avoid DNS conflicts on the same VNET.
59
59
60
-
Provisioning agents are not required for these images, however you may want to have extension handling capabilities. You can install the Linux Agent but disable the provisioning option. Even though you do not need a provisioning agent, the image must fulfill [prerequisites](./create-upload-generic.md) for Azure Images.
60
+
Provisioning agents aren't required for these images, however you may want to have extension handling capabilities. You can install the Linux Agent but disable the provisioning option. Even though you don't need a provisioning agent, the image must fulfill [prerequisites](./create-upload-generic.md) for Azure Images.
61
61
62
62
63
63
## Image storage options
@@ -69,7 +69,7 @@ When bringing your Linux image you have two options:
69
69
70
70
### Managed images
71
71
72
-
Managed images can be used to create multiple VMs, but they have a lot of limitations. Managed images can only be created from a generalized source (VM or VHD). They can only be used to create VMs in the same region and they can't be shared across subscriptions and tenants.
72
+
Managed images can be used to create multiple VMs, but they have many limitations. Managed images can only be created from a generalized source (VM or VHD). They can only be used to create VMs in the same region and they can't be shared across subscriptions and tenants.
73
73
74
74
Managed images can be used for development and test environments, where you need a couple of simple generalized images to use within single region and subscription.
75
75
@@ -101,7 +101,9 @@ If you still need to create your own image, ensure it meets the [image prerequis
0 commit comments