Skip to content

Commit 8f92dab

Browse files
authored
Merge pull request #57913 from sethmanheim/wk11-13
Freshness reviews and updates
2 parents d9abbc5 + b56e7f0 commit 8f92dab

File tree

2 files changed

+44
-42
lines changed

2 files changed

+44
-42
lines changed

articles/azure-stack/user/azure-stack-create-vm-template.md

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: In this tutorial, you create an Azure Stack VM using a template | Microsoft Docs
3-
description: Describes how to use the ASDK to create a VM using a predfined template and a GitHub custom template.
3+
description: Describes how to use the ASDK to create a VM using a predefined template and a GitHub custom template.
44
services: azure-stack
55
documentationcenter: ''
66
author: sethmanheim
@@ -14,41 +14,41 @@ pms.tgt_pltfrm: na
1414
ms.devlang: na
1515
ms.topic: tutorial
1616
ms.custom: mvc
17-
ms.date: 09/12/2018
17+
ms.date: 11/13/2018
1818
ms.author: sethm
1919
ms.reviewer:
2020
---
2121

2222
# Tutorial: create a VM using a community template
23+
2324
As an Azure Stack operator or user, you can create a VM using [custom GitHub quickstart templates](https://github.com/Azure/AzureStack-QuickStart-Templates) rather than deploying one manually from the Azure Stack marketplace.
2425

2526
In this tutorial, you learn how to:
2627

2728
> [!div class="checklist"]
28-
> * Learn about Azure Stack quickstart templates
29+
> * Use Azure Stack quickstart templates
2930
> * Create a VM using a custom GitHub template
3031
> * Start minikube and install an application
3132
32-
## Learn about Azure Stack quickstart templates
33-
Azure Stack quickstart templates are stored in the [public AzureStack QuickStart Templates repository](https://github.com/Azure/AzureStack-QuickStart-Templates) on GitHub. This repository contains Azure Resource Manager deployment templates that have been tested with the Microsoft Azure Stack Development Kit (ASDK). You can use them to make it easier for you to evaluate Azure Stack and use the ASDK environment.
33+
## Azure Stack quickstart templates
3434

35-
Over time many GitHub users have contributed to the repository, resulting in a huge collection of more than 400 deployment templates. This repository is a great starting point to get a better understanding of how you can deploy various kinds of environments to Azure Stack.
36-
37-
>[!IMPORTANT]
38-
> Some of these templates are created by members of the community and not by Microsoft. Each template is licensed under a license agreement by its owner, not Microsoft. Microsoft is not responsible for these templates and does not screen for security, compatibility, or performance. Community templates are not supported under any Microsoft support program or service, and are made available "AS IS" without warranty of any kind.
35+
Azure Stack quickstart templates are stored in the [public Azure Stack QuickStart templates repository](https://github.com/Azure/AzureStack-QuickStart-Templates) on GitHub. This repository contains Azure Resource Manager deployment templates that have been tested with the Microsoft Azure Stack Development Kit (ASDK). You can use them to make it easier for you to evaluate Azure Stack and use the ASDK environment.
3936

40-
If you want to contribute your Azure Resource Manager templates to GitHub, you should make your contribution to the [azure-quickstart-templates repository](https://github.com/Azure/AzureStack-QuickStart-Templates).
37+
Over time many GitHub users have contributed to the repository, resulting in a collection of more than 400 deployment templates. This repository is a great starting point to get a better understanding of how you can deploy various kinds of environments to Azure Stack.
4138

42-
To learn more about the GitHub repository, and how to contribute to it, see the [readme file](https://github.com/Azure/AzureStack-QuickStart-Templates/blob/master/README.md).
39+
>[!IMPORTANT]
40+
> Some of these templates are created by members of the community and not by Microsoft. Each template is licensed under a license agreement by its owner, not Microsoft. Microsoft is not responsible for these templates and does not screen for security, compatibility, or performance. Community templates are not supported under any Microsoft support program or service, and are made available "AS IS," without warranty of any kind.
4341
42+
If you want to contribute your Azure Resource Manager templates to GitHub, make your contribution to the [AzureStack-QuickStart-Templates](https://github.com/Azure/AzureStack-QuickStart-Templates) repository. To learn more about this repository and how to contribute to it, see the [readme file](https://github.com/Azure/AzureStack-QuickStart-Templates/blob/master/README.md).
4443

4544
## Create a VM using a custom GitHub template
45+
4646
In this example tutorial, the [101-vm-linux-minikube](https://github.com/Azure/AzureStack-QuickStart-Templates/tree/master/101-vm-linux-minikube) Azure Stack quickstart template is used to deploy an Ubuntu 16.04 virtual machine on Azure Stack running Minikube to manage a Kubernetes cluster.
4747

4848
Minikube is a tool that makes it easy to run Kubernetes locally. Minikube runs a single-node Kubernetes cluster inside a VM, enabling you to try out Kubernetes or develop with it day-to-day. It supports a simple, one-node Kubernetes cluster running on a Linux VM. Minikube is the fastest and most straightforward way to get a fully functional Kubernetes cluster running. It enables developers to develop and test their Kubernetes-based application deployments on their local machines. Architecturally, the Minikube VM runs both Master and Agent Node Components locally:
4949

5050
- Master Node components such as API Server, Scheduler, and [etcd Server](https://coreos.com/etcd/) are run in a single Linux process called LocalKube.
51-
- Agent Node components are run inside docker containers exactly as they would run on a normal Agent Node. From an application deployment standpoint, there is no difference when the application is deployed on a Minikube or regular Kubernetes cluster.
51+
- Agent Node components are run inside docker containers exactly as they would run on a normal Agent Node. From an application deployment standpoint, there is no difference between when the application is deployed on a Minikube, or in a regular Kubernetes cluster.
5252

5353
This template installs the following components:
5454

@@ -60,33 +60,33 @@ This template installs the following components:
6060
- xRDP
6161

6262
> [!IMPORTANT]
63-
> The Ubuntu VM image (Ubuntu Server 16.04 LTS in this example) must already have been added to the Azure Stack marketplace before beginning these steps.
63+
> The Ubuntu VM image (Ubuntu Server 16.04 LTS in this example) must already have been added to the Azure Stack marketplace before performing these steps.
6464
65-
1. Click **+ Create a resource** > **Custom** > **Template deployment**.
65+
1. Select **+ Create a resource**, then **Custom**, then **Template deployment**.
6666

6767
![](media/azure-stack-create-vm-template/1.PNG)
6868

69-
2. Click **Edit template**.
69+
2. Select **Edit template**.
7070

7171
![](media/azure-stack-create-vm-template/2.PNG)
7272

73-
3. Click **Quickstart template**.
73+
3. Select **Quickstart template**.
7474

7575
![](media/azure-stack-create-vm-template/3.PNG)
7676

7777
4. Select **101-vm-linux-minikube** from the available templates using the **Select a template** dropdown list, and then click **OK**.
7878

7979
![](media/azure-stack-create-vm-template/4.PNG)
8080

81-
5. If you want to make modifications to the template JSON you can do so, if not, or when complete, click **Save** to close the edit template dialog.
81+
5. If you want to make modifications to the template JSON you can do so. If not, or when complete, select **Save** to close the **Edit template** dialog.
8282

8383
![](media/azure-stack-create-vm-template/5.PNG)
8484

85-
6. Click on **Parameters**, fill in or modify the available fields as necessary, and then click **OK**. Choose the subscription to use, create or choose an existing resource group name, and then click **Create** to initiate the template deployment.
85+
6. Select **Parameters**, fill in or modify the available fields as necessary, and then click **OK**. Choose the subscription to use, create or choose an existing resource group name, and then select **Create** to initiate the template deployment.
8686

8787
![](media/azure-stack-create-vm-template/6.PNG)
8888

89-
7. Choose the subscription to use, create or choose an existing resource group name, and then click **Create** to initiate the template deployment.
89+
7. Choose the subscription to use, create or choose an existing resource group name, and then select **Create** to initiate the template deployment.
9090

9191
![](media/azure-stack-create-vm-template/7.PNG)
9292

@@ -97,18 +97,19 @@ This template installs the following components:
9797
>[!NOTE]
9898
> The VM will be running when the deployment completes.
9999
100-
## Start minikube and install an application
101-
Now that the Linux VM has been successfully created, you can sign in to start minikube and install an application.
100+
## Start Minikube and install an application
101+
102+
Now that the Linux VM has been successfully created, you can sign in to start Minikube and install an application.
102103

103-
1. After the deployment completes, click **Connect** to view the Public IP address that will be used to connect to the Linux VM.
104+
1. After the deployment completes, select **Connect** to view the public IP address that will be used to connect to the Linux VM.
104105

105106
![](media/azure-stack-create-vm-template/9.PNG)
106107

107-
2. From an elevated command prompt, run **mstsc.exe** to open Remote Desktop Connection and connect to the Linux VM's public IP address discovered in the previous step. When prompted to sign in to xRDP, use the credentials you specified when creating the VM.
108+
2. From an elevated command prompt, run **mstsc.exe** to open Remote Desktop Connection and connect to the Linux VM public IP address discovered in the previous step. When prompted to sign in to xRDP, use the credentials you specified when creating the VM.
108109

109110
![](media/azure-stack-create-vm-template/10.PNG)
110111

111-
3. Open Terminal Emulator and enter following commands to start minikube:
112+
3. Open Terminal Emulator and enter following commands to start Minikube:
112113

113114
```shell
114115
sudo minikube start --vm-driver=none
@@ -118,11 +119,11 @@ Now that the Linux VM has been successfully created, you can sign in to start mi
118119

119120
![](media/azure-stack-create-vm-template/11.PNG)
120121

121-
4. Open the web browser and visit the Kubernetes dashboard address. Congratulations, you now have a fully working Kubernetes installation using minikube!
122+
4. Open the web browser and visit the Kubernetes dashboard address. Congratulations, you now have a fully working Kubernetes installation using Minikube!
122123

123124
![](media/azure-stack-create-vm-template/12.PNG)
124125

125-
5. If you would like to deploy a sample application, visit the official documentation page of kubernetes, skip the "Create Minikube Cluster" section as you have already created one above. Simply jump to the section "Create your Node.js application" at https://kubernetes.io/docs/tutorials/stateless-application/hello-minikube/.
126+
5. To deploy a sample application, visit the official documentation page of Kubernetes, and skip the "Create Minikube Cluster" section as you have already created one above. Jump to the section "Create your Node.js application" at https://kubernetes.io/docs/tutorials/stateless-application/hello-minikube/.
126127

127128
## Next steps
128129

articles/azure-stack/user/azure-stack-subscribe-services.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ pms.tgt_pltfrm: na
1414
ms.devlang: na
1515
ms.topic: tutorial
1616
ms.custom: mvc
17-
ms.date: 09/05/2018
17+
ms.date: 11/13/2018
1818
ms.author: sethm
1919
ms.reviewer:
2020
---
2121

2222
# Tutorial: create and test a subscription
23-
This tutorial shows you how to create a subscription containing an offer and then test it.
24-
For the test, you will sign in to the Azure Stack user portal as a cloud administrator, subscribe to the offer, and then create a virtual machine.
23+
24+
This tutorial shows you how to create a subscription containing an offer and then test it. For the test, you sign in to the Azure Stack user portal as a cloud administrator, subscribe to the offer, and then create a virtual machine.
2525

2626
> [!TIP]
27-
> For more a more advanced evaluation experience, you can [create a subscription for a particular user](https://docs.microsoft.com/azure/azure-stack/azure-stack-subscribe-plan-provision-vm#create-a-subscription-as-a-cloud-operator) and then login as that user in the user portal.
27+
> For more a more advanced evaluation experience, you can [create a subscription for a particular user](../azure-stack-subscribe-plan-provision-vm.md#create-a-subscription-as-a-cloud-operator) and then sign in as that user in the user portal.
2828
2929
This tutorial shows you how to subscribe to an Azure Stack offer.
3030

@@ -35,48 +35,49 @@ What you will learn:
3535
> * Test the offer
3636
3737
## Subscribe to an offer
38-
To subscribe to an offer as a user, you need to login to the Azure Stack user portal to discover the services that have been offered by the Azure Stack operator.
3938

40-
1. Sign in to the user portal and click **Get a Subscription**.
39+
To subscribe to an offer as a user, you sign in to the Azure Stack user portal to discover the services that have been offered by the Azure Stack operator.
40+
41+
1. Sign in to the user portal and select **Get a Subscription**.
4142

4243
![Get a subscription](media/azure-stack-subscribe-services/get-subscription.png)
4344

44-
2. In the **Display Name** field, type a name for your subscription. Then, click **Offer** to select one of the available offers in the **Choose an offer** section and then click **Create**.
45+
2. In the **Display Name** field, type a name for your subscription. Then select **Offer** to choose one of the available offers in the **Choose an offer** section. Then select **Create**.
4546

4647
![Create an offer](media/azure-stack-subscribe-services/create-subscription.png)
4748

4849
> [!TIP]
4950
> You must now refresh the user portal to start using your subscription.
5051
51-
3. To view the subscription you created, click **All services**. Then, under the **GENERAL** category select **Subscriptions**, and then select your new subscription. After you subscribe to an offer, refresh the portal to see if new services have been included as part of the new subscription. In this example, **Virtual machines** has been added.
52+
3. To view the subscription you created, select **All services**. Then, under the **GENERAL** category select **Subscriptions**, and then select your new subscription. After you subscribe to an offer, refresh the portal to see if new services have been included as part of the new subscription. In this example, **Virtual machines** has been added.
5253

5354
![View subscription](media/azure-stack-subscribe-services/view-subscription.png)
5455

55-
5656
## Test the offer
57-
While logged in to the user portal, you can test the offer by provisioning a virtual machine using the new subscription capabilities.
57+
58+
While signed in to the user portal, you can test the offer by provisioning a virtual machine using the new subscription capabilities.
5859

5960
> [!NOTE]
6061
> This test requires that a Windows Server 2016 Datacenter VM has first been added to the Azure Stack marketplace.
6162
6263
1. Sign in to the user portal.
6364

64-
2. In the user portal, click **Virtual Machines** > **Add** > **Windows Server 2016 Datacenter**, and then click **Create**.
65+
2. In the user portal, select **Virtual Machines**, then **Add**, then **Windows Server 2016 Datacenter**, and then click **Create**.
6566

66-
3. In the **Basics** section, type a **Name**, **User name**, and **Password**, choose a **Subscription**, create a **Resource group** (or select an existing one), and then click **OK**.
67+
3. In the **Basics** section, type a **Name**, **User name**, and **Password**, choose a **Subscription**, create a **Resource group** (or select an existing one), and then select **OK**.
6768

68-
4. In the **Choose a size** section, click **A1 Standard**, and then click **Select**.
69+
4. In the **Choose a size** section, select **A1 Standard**, and then click **Select**.
6970

70-
5. In the Settings blade, accept the defaults and click **OK**.
71+
5. In the **Settings** blade, accept the defaults and select **OK**.
7172

7273
6. In the **Summary** section, click **OK** to create the virtual machine.
7374

74-
7. To see your new virtual machine, click **Virtual machines**, then search for the new virtual machine, and click its name.
75+
7. To see your new virtual machine, select **Virtual machines**, then search for the new virtual machine, and click its name.
7576

7677
![All resources](media/azure-stack-subscribe-services/view-vm.png)
7778

7879
> [!NOTE]
79-
> The virtual machine deployment will take a few minutes to complete.
80+
> The virtual machine deployment takes a few minutes to complete.
8081
8182

8283
## Next steps

0 commit comments

Comments
 (0)