Skip to content

Commit a8a6592

Browse files
committed
Merge branch 'master' of https://github.com/Microsoft/azure-docs-pr into oct0819
2 parents acf5a82 + ea2bf8e commit a8a6592

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

articles/spring-cloud/spring-cloud-quickstart-launch-app-portal.md

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.author: v-vasuke
1616

1717
Azure Spring Cloud enables you to easily run Spring Cloud based microservice applications on Azure.
1818

19-
This quickstart shows you how to deploy an existing Spring Cloud application to Azure. [Here is a link](https://github.com/xscript/PiggyMetrics) to the sample application code used in this tutorial. When you're finished, the provided sample application will be accessible online and ready to be managed via the Azure portal.
19+
This quickstart shows you how to deploy an existing Spring Cloud application to Azure. [Here is a link](https://github.com/Azure-Samples/PiggyMetrics) to the sample application code used in this tutorial. When you're finished, the provided sample application will be accessible online and ready to be managed via the Azure portal.
2020

2121
Following this quickstart, you will learn how to:
2222

@@ -30,8 +30,7 @@ Following this quickstart, you will learn how to:
3030
## Prerequisites
3131

3232
>[!Note]
33-
> Before beginning this quickstart, ensure that your Azure subscription has access to Azure Spring Cloud. As a preview service, we ask customers to reach out to us so that we can add your subscription to our allow-list. If you would like to explore the capabilities of Azure Spring Cloud, please [fill out this form](https://forms.office.com/Pages/ResponsePage.aspx?id=v4j5cvGGr0GRqy180BHbR-LA2geqX-ZLhi-Ado1LD3tUNDk2VFpGUzYwVEJNVkhLRlcwNkZFUFZEUS4u
34-
).
33+
> Before beginning this quickstart, ensure that your Azure subscription has access to Azure Spring Cloud. As a preview service, we ask customers to reach out to us so that we can add your subscription to our allow-list. If you would like to explore the capabilities of Azure Spring Cloud, please reach out to us by email: [email protected].
3534
3635
>[!TIP]
3736
> The Azure Cloud Shell is a free interactive shell that you can use to run the steps in this article. It has common Azure tools preinstalled, including the latest versions of Git, JDK, Maven, and the Azure CLI. If you are logged in to your Azure subscription, launch your [Azure Cloud Shell](https://shell.azure.com) from shell.azure.com. You can learn more about Azure Cloud Shell by [reading our documentation](../cloud-shell/overview.md)
@@ -54,7 +53,7 @@ az extension add -y --source https://azureclitemp.blob.core.windows.net/spring-c
5453

5554
## Provision a service instance on the Azure portal
5655

57-
1. In a web browser, open the [Azure portal](https://portal.azure.com), and sign into your account.
56+
1. In a web browser, open the [Azure portal](https://portal.azure.com/?microsoft_azure_marketplace_ItemHideKey=AppPlatformExtension), and sign into your account.
5857

5958
1. Search for the **Azure Spring Cloud** and select it to go to the overview page. Select the **Create** button to get started.
6059

@@ -104,26 +103,26 @@ It takes about 5 minutes for the service to deploy. Once it is deployed, the **
104103
105104
```azurecli
106105
az configure --defaults group=<resource group name>
107-
az configure --defaults asc=<service instance name>
106+
az configure --defaults spring-cloud=<service instance name>
108107
```
109108
110109
1. Create the `gateway` application and deploy the JAR file.
111110
112111
```azurecli
113-
az asc app create -n gateway
114-
az asc app deploy -n gateway --jar-path ./gateway/target/gateway.jar
112+
az spring-cloud app create -n gateway
113+
az spring-cloud app deploy -n gateway --jar-path ./gateway/target/gateway.jar
115114
```
116115
117116
1. Following the same pattern, create the `account-service` and `auth-service` applications and deploy their JAR files.
118117
119118
```cli
120-
az asc app create -n account-service
121-
az asc app deploy -n account-service --jar-path ./account-service/target/account-service.jar
122-
az asc app create -n auth-service
123-
az asc app deploy -n auth-service --jar-path ./auth-service/target/auth-service.jar
119+
az spring-cloud app create -n account-service
120+
az spring-cloud app deploy -n account-service --jar-path ./account-service/target/account-service.jar
121+
az spring-cloud app create -n auth-service
122+
az spring-cloud app deploy -n auth-service --jar-path ./auth-service/target/auth-service.jar
124123
```
125124
126-
1. It takes a few minutes to finish deploying the applications. To confirm that they have deployed, go to the **Application Dashboard** in the Azure portal. You should see a line each of the three applications.
125+
1. It takes a few minutes to finish deploying the applications. To confirm that they have deployed, go to the **Apps** blade in the Azure portal. You should see a line each of the three applications.
127126
128127
## Assign a public endpoint to gateway
129128
@@ -142,8 +141,7 @@ In this quickstart, you learned how to:
142141
> * Set a configuration server for an instance
143142
> * Build a microservices application locally
144143
> * Deploy each microservice
145-
> * Edit environment variables for applications
146-
> * Assign public IP for your application gateway
144+
> * Assign public endpoint for your application gateway
147145
148146
> [!div class="nextstepaction"]
149-
> [Prepare your Azure Spring Cloud application for deployment](spring-cloud-tutorial-prepare-app-deployment.md)
147+
> [Prepare your Azure Spring Cloud application for deployment](spring-cloud-tutorial-prepare-app-deployment.md)

0 commit comments

Comments
 (0)