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/batch/batch-rendering-functionality.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,9 @@ ms.topic: how-to
7
7
8
8
# Azure Batch rendering capabilities
9
9
10
+
> [!CAUTION]
11
+
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
12
+
10
13
Standard Azure Batch capabilities are used to run rendering workloads and applications. Batch also includes specific features to support rendering workloads.
11
14
12
15
For an overview of Batch concepts, including pools, jobs, and tasks, see [this article](./batch-service-workflow-features.md).
Copy file name to clipboardExpand all lines: articles/batch/virtual-file-mount.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@ ms.date: 08/22/2023
9
9
10
10
# Mount a virtual file system on a Batch pool
11
11
12
+
> [!CAUTION]
13
+
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
14
+
12
15
Azure Batch supports mounting cloud storage or an external file system on Windows or Linux compute nodes in Batch pools. When a compute node joins the pool, the virtual file system mounts and acts as a local drive on that node. This article shows you how to mount a virtual file system on a pool of compute nodes by using the [Batch Management Library for .NET](/dotnet/api/overview/azure/batch).
13
16
14
17
Mounting the file system to the pool makes accessing data easier and more efficient than requiring tasks to get their own data from a large shared data set. Consider a scenario where multiple tasks need access to a common set of data, like rendering a movie. Each task renders one or more frames at once from the scene files. By mounting a drive that contains the scene files, it's easier for each compute node to access the shared data.
Copy file name to clipboardExpand all lines: articles/databox-online/azure-stack-edge-gpu-create-virtual-machine-marketplace-image.md
+20-16Lines changed: 20 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,14 @@ ms.topic: how-to
11
11
ms.date: 05/24/2022
12
12
ms.author: alkohli
13
13
#Customer intent: As an IT admin, I need to understand how to create and upload Azure VM images that I can use with my Azure Stack Edge Pro device so that I can deploy VMs on the device.
14
+
14
15
---
15
16
16
17
# Use Azure Marketplace image to create VM image for your Azure Stack Edge Pro GPU
17
18
19
+
> [!CAUTION]
20
+
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
To deploy VMs on your Azure Stack Edge Pro GPU device, you need to create a VM image that you can use to create VMs. This article describes the steps that are required to create a VM image starting from an Azure Marketplace image. You can then use this VM image to deploy VMs on your Azure Stack Edge Pro GPU device.
@@ -41,9 +45,9 @@ Before you can use Azure Marketplace images for Azure Stack Edge, make sure you'
41
45
42
46
## Search for Azure Marketplace images
43
47
44
-
You'll now identify a specific Azure Marketplace image that you wish to use. Azure Marketplace hosts thousands of VM images.
48
+
You'll now identify a specific Azure Marketplace image that you wish to use. Azure Marketplace hosts thousands of VM images.
45
49
46
-
To find some of the most commonly used Marketplace images that match your search criteria, run the following command.
50
+
To find some of the most commonly used Marketplace images that match your search criteria, run the following command.
47
51
48
52
```azurecli
49
53
az vm image list --all [--publisher <Publisher>] [--offer <Offer>] [--sku <SKU>]
@@ -54,13 +58,13 @@ Some example queries are:
54
58
55
59
```azurecli
56
60
#Returns all images of type “Windows Server”
57
-
az vm image list --all --publisher "MicrosoftWindowsserver" --offer "WindowsServer"
61
+
az vm image list --all --publisher "MicrosoftWindowsserver" --offer "WindowsServer"
58
62
59
63
#Returns all Windows Server 2019 Datacenter images from West US published by Microsoft
60
64
az vm image list --all --location "westus" --publisher "MicrosoftWindowsserver" --offer "WindowsServer" --sku "2019-Datacenter"
61
65
62
-
#Returns all VM images from a publisher
63
-
az vm image list --all --publisher "Canonical"
66
+
#Returns all VM images from a publisher
67
+
az vm image list --all --publisher "Canonical"
64
68
```
65
69
66
70
Here is an example output when VM images of a certain publisher, offer, and SKU were queried.
@@ -131,13 +135,13 @@ PS /home/user> az vm image list --all --publisher "Canonical" --offer "UbuntuSer
131
135
PS /home/user>
132
136
```
133
137
134
-
In this example, we will select Windows Server 2019 Datacenter Core, version 2019.0.20190410. We will identify this image by its Universal Resource Number (“URN”).
135
-
138
+
In this example, we will select Windows Server 2019 Datacenter Core, version 2019.0.20190410. We will identify this image by its Universal Resource Number (“URN”).
139
+
136
140
:::image type="content" source="media/azure-stack-edge-create-virtual-machine-marketplace-image/marketplace-image-1.png" alt-text="List of marketplace images":::
137
141
138
142
### Commonly used Marketplace images
139
143
140
-
Below is a list of URNs for some of the most commonly used images. If you just want the latest version of a particular OS, the version number can be replaced with “latest” in the URN. For example, “MicrosoftWindowsServer:WindowsServer:2019-Datacenter:Latest”.
144
+
Below is a list of URNs for some of the most commonly used images. If you just want the latest version of a particular OS, the version number can be replaced with “latest” in the URN. For example, “MicrosoftWindowsServer:WindowsServer:2019-Datacenter:Latest”.
141
145
142
146
143
147
| OS | SKU | Version | URN |
@@ -156,7 +160,7 @@ Below is a list of URNs for some of the most commonly used images. If you just w
156
160
157
161
## Create a new managed disk from the Marketplace image
158
162
159
-
Create an Azure Managed Disk from your chosen Marketplace image.
163
+
Create an Azure Managed Disk from your chosen Marketplace image.
160
164
161
165
1. Set some parameters.
162
166
@@ -172,7 +176,7 @@ Create an Azure Managed Disk from your chosen Marketplace image.
172
176
```azurecli
173
177
az disk create -g $diskRG -n $diskName --image-reference $urn
174
178
$sas = az disk grant-access --duration-in-seconds 36000 --access-level Read --name $diskName --resource-group $diskRG
## Export a VHD from the managed disk to Azure Storage
252
+
## Export a VHD from the managed disk to Azure Storage
249
253
250
254
This step will export a VHD from the managed disk to your preferred Azure blob storage account. This VHD can then be used to create VM images on Azure Stack Edge.
251
255
252
256
1. Set the destination storage account where the VHD will be copied.
@@ -266,9 +270,9 @@ This step will export a VHD from the managed disk to your preferred Azure blob s
266
270
```
267
271
268
272
The VHD copy will take several minutes to complete. Ensure the copy has completed before proceeding by running the following command. The status field will show “Success” when complete.
0 commit comments