Skip to content

Commit 9b097df

Browse files
authored
Merge pull request #273087 from fbsolo-ms1/update-data-science-virtual-machine-files
Freshness update for dsvm-tutorial-resource-manager.md . . .
2 parents 29f8d5b + 9b21077 commit 9b097df

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

articles/machine-learning/data-science-virtual-machine/dsvm-tutorial-resource-manager.md

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
---
22
title: 'Quickstart: Create a Data Science VM - Resource Manager template'
33
titleSuffix: Azure Data Science Virtual Machine
4-
description: In this quickstart, you use an Azure Resource Manager template to quickly deploy a Data Science Virtual Machine
4+
description: Learn how to use an Azure Resource Manager template to quickly deploy a Data Science Virtual Machine
55
services: machine-learning
66
author: s-polly
77
ms.author: scottpolly
8-
ms.date: 06/10/2020
8+
ms.reviewer: franksolomon
9+
ms.date: 04/23/2024
910
ms.topic: quickstart
1011
ms.service: data-science-vm
1112
ms.custom: subject-armqs, mode-arm, devx-track-arm-template
1213
---
1314

1415
# Quickstart: Create an Ubuntu Data Science Virtual Machine using an ARM template
1516

16-
This quickstart will show you how to create an Ubuntu Data Science Virtual Machine using an Azure Resource Manager template (ARM template). Data Science Virtual Machines are cloud-based virtual machines preloaded with a suite of data science and machine learning frameworks and tools. When deployed on GPU-powered compute resources, all tools and libraries are configured to use the GPU.
17+
This quickstart shows how to create an Ubuntu Data Science Virtual Machine (DSVM) using an Azure Resource Manager template (ARM template). A Data Science Virtual Machines is a cloud-based resource, preloaded with a suite of data science and machine learning frameworks and tools. When deployed on GPU-powered compute resources, all tools and libraries are configured to use the GPU.
1718

1819
[!INCLUDE [About Azure Resource Manager](../../../includes/resource-manager-quickstart-introduction.md)]
1920

20-
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template will open in the Azure portal.
21+
If your environment meets the prerequisites and you know how to use ARM templates, select the **Deploy to Azure** button. This opens the template in the Azure portal.
2122

22-
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fapplication-workloads%2Fdatascience%2Fvm-ubuntu-DSVM-GPU-or-CPU%2Fazuredeploy.json":::
23+
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Screenshot showing the button that deploys the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fapplication-workloads%2Fdatascience%2Fvm-ubuntu-DSVM-GPU-or-CPU%2Fazuredeploy.json":::
2324

2425
## Prerequisites
2526

@@ -29,22 +30,22 @@ If your environment meets the prerequisites and you're familiar with using ARM t
2930

3031
## Review the template
3132

32-
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/vm-ubuntu-DSVM-GPU-or-CPU/).
33+
You can find the template used in this quickstart at the [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/vm-ubuntu-DSVM-GPU-or-CPU/) resource.
3334

3435
:::code language="json" source="~/quickstart-templates/application-workloads/datascience/vm-ubuntu-DSVM-GPU-or-CPU/azuredeploy.json":::
3536

36-
The following resources are defined in the template:
37+
The template defines these resources:
3738

3839
* [Microsoft.Network/networkInterfaces](/azure/templates/microsoft.network/networkinterfaces)
3940
* [Microsoft.Network/networkSecurityGroups](/azure/templates/microsoft.network/networksecuritygroups)
4041
* [Microsoft.Network/virtualNetworks](/azure/templates/microsoft.network/virtualnetworks)
4142
* [Microsoft.Network/publicIPAddresses](/azure/templates/microsoft.network/publicipaddresses)
4243
* [Microsoft.Storage/storageAccounts](/azure/templates/microsoft.storage/storageaccounts)
43-
* [Microsoft.Compute/virtualMachines](/azure/templates/microsoft.compute/virtualmachines): Create a cloud-based virtual machine. In this template, the virtual machine is configured as a Data Science Virtual Machine running Ubuntu.
44+
* [Microsoft.Compute/virtualMachines](/azure/templates/microsoft.compute/virtualmachines): Create a cloud-based virtual machine. In this template, the virtual machine is configured as a Data Science Virtual Machine that runs Ubuntu.
4445

4546
## Deploy the template
4647

47-
To use the template from the Azure CLI, login and choose your subscription (See [Sign in with Azure CLI](/cli/azure/authenticate-azure-cli)). Then run:
48+
To use the template from the Azure CLI, sign in and choose your subscription (See [Sign in with Azure CLI](/cli/azure/authenticate-azure-cli)). Then run:
4849

4950
```azurecli-interactive
5051
read -p "Enter the name of the resource group to create:" resourceGroupName &&
@@ -59,31 +60,31 @@ echo "Press [ENTER] to continue ..." &&
5960
read
6061
```
6162

62-
When you run the above command, enter:
63+
When you run this code, enter:
6364

64-
1. The name of the resource group you'd like to create to contain the DSVM and associated resources.
65-
1. The Azure location in which you wish to make the deployment.
66-
1. The authentication type you'd like to use (enter the string `password` or `sshPublicKey`).
67-
1. The login name of the administrator account (this value may not be `admin`).
68-
1. The value of the password or ssh public key for the account.
65+
1. The name of the resource group to contain the DSVM and associated resources that you'd like to create
66+
1. The Azure location where you want to make the deployment
67+
1. The authentication type you want to use (enter the string `password` or `sshPublicKey`)
68+
1. The login name of the administrator account (this value might not be `admin`)
69+
1. The value of the password or ssh public key for the account
6970

7071
## Review deployed resources
7172

72-
To see your Data Science Virtual Machine:
73+
To display your Data Science Virtual Machine:
7374

7475
1. Go to the [Azure portal](https://portal.azure.com)
75-
1. Sign in.
76-
1. Choose the resource group you just created.
76+
1. Sign in
77+
1. Choose the resource group you just created
7778

78-
You'll see the Resource Group's information:
79+
This displays the Resource Group information:
7980

80-
:::image type="content" source="media/dsvm-tutorial-resource-manager/resource-group-home.png" alt-text="Screenshot of a basic Resource Group containing a DSVM":::
81+
:::image type="content" source="media/dsvm-tutorial-resource-manager/resource-group-home.png" alt-text="Screenshot showing a basic Resource Group containing a DSVM":::
8182

82-
Click on the Virtual Machine resource to go to its information page. Here you can find information on the VM, including connection details.
83+
Select the Virtual Machine resource to go to its information page. Here you can find information about the VM, including connection details.
8384

8485
## Clean up resources
8586

86-
If you don't want to use this virtual machine, delete it. Since the DSVM is associated with other resources such as a storage account, you'll probably want to delete the entire resource group you created. You can delete the resource group using the portal by clicking on the **Delete** button and confirming. Or, you can delete the resource group from the CLI with:
87+
If you don't want to use this virtual machine, you should delete it. Since the DSVM is associated with other resources such as a storage account, you might want to delete the entire resource group you created. Using the portal, you can delete the resource group. Select the **Delete** button and then confirm your choice. You can also delete the resource group from the CLI as shown here:
8788

8889
```azurecli-interactive
8990
echo "Enter the Resource Group name:" &&

0 commit comments

Comments
 (0)