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/azure-stack/user/azure-stack-create-vm-template.md
+27-26Lines changed: 27 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
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.
4
4
services: azure-stack
5
5
documentationcenter: ''
6
6
author: sethmanheim
@@ -14,41 +14,41 @@ pms.tgt_pltfrm: na
14
14
ms.devlang: na
15
15
ms.topic: tutorial
16
16
ms.custom: mvc
17
-
ms.date: 09/12/2018
17
+
ms.date: 11/13/2018
18
18
ms.author: sethm
19
19
ms.reviewer:
20
20
---
21
21
22
22
# Tutorial: create a VM using a community template
23
+
23
24
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.
24
25
25
26
In this tutorial, you learn how to:
26
27
27
28
> [!div class="checklist"]
28
-
> *Learn about Azure Stack quickstart templates
29
+
> *Use Azure Stack quickstart templates
29
30
> * Create a VM using a custom GitHub template
30
31
> * Start minikube and install an application
31
32
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
34
34
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.
39
36
40
-
If you want to contribute your Azure Resource Manager templatesto 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.
41
38
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.
43
41
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).
44
43
45
44
## Create a VM using a custom GitHub template
45
+
46
46
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.
47
47
48
48
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:
49
49
50
50
- 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.
52
52
53
53
This template installs the following components:
54
54
@@ -60,33 +60,33 @@ This template installs the following components:
60
60
- xRDP
61
61
62
62
> [!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.
64
64
65
-
1. Click**+ Create a resource** >**Custom** >**Template deployment**.
65
+
1. Select**+ Create a resource**, then**Custom**, then**Template deployment**.
66
66
67
67

68
68
69
-
2.Click**Edit template**.
69
+
2.Select**Edit template**.
70
70
71
71

72
72
73
-
3. Click**Quickstart template**.
73
+
3. Select**Quickstart template**.
74
74
75
75

76
76
77
77
4. Select **101-vm-linux-minikube** from the available templates using the **Select a template** dropdown list, and then click **OK**.
78
78
79
79

80
80
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.
82
82
83
83

84
84
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.
86
86
87
87

88
88
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.
90
90
91
91

92
92
@@ -97,18 +97,19 @@ This template installs the following components:
97
97
>[!NOTE]
98
98
> The VM will be running when the deployment completes.
99
99
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.
102
103
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.
104
105
105
106

106
107
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.
108
109
109
110

110
111
111
-
3. Open Terminal Emulator and enter following commands to start minikube:
112
+
3. Open Terminal Emulator and enter following commands to start Minikube:
112
113
113
114
```shell
114
115
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
118
119
119
120

120
121
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!
122
123
123
124

124
125
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/.
Copy file name to clipboardExpand all lines: articles/azure-stack/user/azure-stack-subscribe-services.md
+17-16Lines changed: 17 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,17 +14,17 @@ pms.tgt_pltfrm: na
14
14
ms.devlang: na
15
15
ms.topic: tutorial
16
16
ms.custom: mvc
17
-
ms.date: 09/05/2018
17
+
ms.date: 11/13/2018
18
18
ms.author: sethm
19
19
ms.reviewer:
20
20
---
21
21
22
22
# 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.
25
25
26
26
> [!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.
28
28
29
29
This tutorial shows you how to subscribe to an Azure Stack offer.
30
30
@@ -35,48 +35,49 @@ What you will learn:
35
35
> * Test the offer
36
36
37
37
## 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.
39
38
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**.
41
42
42
43

43
44
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**.
45
46
46
47

47
48
48
49
> [!TIP]
49
50
> You must now refresh the user portal to start using your subscription.
50
51
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.
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.
58
59
59
60
> [!NOTE]
60
61
> This test requires that a Windows Server 2016 Datacenter VM has first been added to the Azure Stack marketplace.
61
62
62
63
1. Sign in to the user portal.
63
64
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**.
65
66
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**.
67
68
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**.
69
70
70
-
5. In the Settings blade, accept the defaults and click**OK**.
71
+
5. In the **Settings** blade, accept the defaults and select**OK**.
71
72
72
73
6. In the **Summary** section, click **OK** to create the virtual machine.
73
74
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.
0 commit comments