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
# Quickstart: Create an Ubuntu Data Science Virtual Machine using an ARM template
15
16
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.
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.
21
22
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":::
23
24
24
25
## Prerequisites
25
26
@@ -29,22 +30,22 @@ If your environment meets the prerequisites and you're familiar with using ARM t
29
30
30
31
## Review the template
31
32
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.
*[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.
44
45
45
46
## Deploy the template
46
47
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:
48
49
49
50
```azurecli-interactive
50
51
read -p "Enter the name of the resource group to create:" resourceGroupName &&
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
69
70
70
71
## Review deployed resources
71
72
72
-
To see your Data Science Virtual Machine:
73
+
To display your Data Science Virtual Machine:
73
74
74
75
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
77
78
78
-
You'll see the Resource Group's information:
79
+
This displays the Resource Group information:
79
80
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":::
81
82
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.
83
84
84
85
## Clean up resources
85
86
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:
0 commit comments