Skip to content

Commit fae888d

Browse files
Merge pull request #231486 from KarlErickson/karler-cleanup
Miscellaneous cleanup
2 parents 08135a4 + c516b18 commit fae888d

17 files changed

+114
-73
lines changed

articles/spring-apps/how-to-custom-persistent-storage-with-standard-consumption-plan.md renamed to articles/spring-apps/how-to-custom-persistent-storage-with-standard-consumption.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: karlerickson
55
ms.author: yitaopan
66
ms.service: spring-apps
77
ms.topic: how-to
8-
ms.date: 03/22/2023
8+
ms.date: 03/21/2023
99
ms.custom: devx-track-java
1010
---
1111

@@ -91,7 +91,7 @@ Use the following steps to create a storage account and establish a file share t
9191

9292
The storage account key is required to create the storage link in your Azure Container Apps environment.
9393

94-
## Link the storage to the managed environment
94+
## Link the storage to the Azure Container Apps environment
9595

9696
Create the storage link in the Azure Container Apps environment by using the following commands. The `az containerapp env storage set` command creates a link between the environment and the file share created with the `az storage share-rm` command.
9797

@@ -138,4 +138,4 @@ echo "Press [ENTER] to continue ..."
138138

139139
## Next steps
140140

141-
- [Azure Spring Apps](./index.yml)
141+
- [Customer responsibilities for Azure Spring Apps Standard consumption plan in a virtual network](./standard-consumption-customer-responsibilities.md)

articles/spring-apps/overview.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn the features and benefits of Azure Spring Apps to deploy and
44
author: karlerickson
55
ms.service: spring-apps
66
ms.topic: overview
7-
ms.date: 03/09/2021
7+
ms.date: 03/21/2023
88
ms.author: karler
99
ms.custom: devx-track-java, contperf-fy21q2, event-tier1-build-2022
1010
#Customer intent: As an Azure Cloud user, I want to deploy, run, and monitor Spring applications.
@@ -140,6 +140,20 @@ Azure Spring Apps, including Enterprise tier, runs on Azure in a fully managed e
140140

141141
After you create your Enterprise tier service instance and deploy your applications, you can monitor with Application Insights or any other application performance management tools of your choice.
142142

143+
### Get started with the Standard consumption plan
144+
145+
The following quickstarts and articles will help you get started using the Standard consumption plan:
146+
147+
* [Provision a service instance](quickstart-provision-standard-consumption-service-instance.md)
148+
* [Provision in an Azure Container Apps environment with VNet](quickstart-provision-standard-consumption-app-environment-with-virtual-network.md)
149+
* [Access apps in a VNet](quickstart-access-standard-consumption-within-virtual-network.md)
150+
* [Deploy an event-driven app](quickstart-deploy-event-driven-app-standard-consumption.md)
151+
* [Set up autoscale](quickstart-apps-autoscale-standard-consumption.md)
152+
* [Map a custom domain to Azure Spring Apps](quickstart-standard-consumption-custom-domain.md)
153+
* [Analyze logs and metrics](quickstart-analyze-logs-and-metrics-standard-consumption.md)
154+
* [Enable your own persistent storage](how-to-custom-persistent-storage-with-standard-consumption.md)
155+
* [Customer responsibilities for Standard consumption plan in a virtual network](standard-consumption-customer-responsibilities.md)
156+
143157
### Get started with Enterprise tier
144158

145159
The following quickstarts will help you get started using the Enterprise tier:

articles/spring-apps/quickstart-access-within-virtual-network.md renamed to articles/spring-apps/quickstart-access-standard-consumption-within-virtual-network.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Access applications using Azure Spring Apps Standard consumption plan in a virtual network
2+
title: Quickstart - Access applications using Azure Spring Apps Standard consumption plan in a virtual network
33
description: Learn how to access applications in a virtual network that are using the Azure Spring Apps Standard consumption plan.
44
author: karlerickson
55
ms.author: haojianzhong
@@ -9,15 +9,20 @@ ms.date: 03/21/2023
99
ms.custom: devx-track-java
1010
---
1111

12-
# Access applications using Azure Spring Apps Standard consumption plan in a virtual network
12+
# Quickstart: Access applications using Azure Spring Apps Standard consumption plan in a virtual network
1313

14-
This article describes how to access your application in a virtual network using Azure Spring Apps Standard Consumption plan.
14+
> [!NOTE]
15+
> Azure Spring Apps is the new name for the Azure Spring Cloud service. Although the service has a new name, you'll see the old name in some places for a while as we work to update assets such as screenshots, videos, and diagrams.
1516
16-
When you create an Azure Container Apps environment in an existing virtual network, you can access all the apps inside the environment only within that virtual network. In addition, when you create an instance of Azure Spring Apps inside the Azure Container Apps environment, you can access the applications in the Azure Spring Apps instance only from the virtual network. For more information, see [Provide a virtual network to an internal Azure Container Apps environments](/azure/container-apps/vnet-custom-internal?tabs=bash&pivots=azure-portal).
17+
**This article applies to:** ✔️ Standard consumption (Preview) ❌ Basic/Standard ❌ Enterprise
18+
19+
This article describes how to access your application in a virtual network using Azure Spring Apps Standard consumption plan.
20+
21+
When you create an Azure Container Apps environment in an existing virtual network, you can access all the apps inside the environment only within that virtual network. In addition, when you create an instance of Azure Spring Apps inside the Azure Container Apps environment, you can access the applications in the Azure Spring Apps instance only from the virtual network. For more information, see [Provide a virtual network to an internal Azure Container Apps environments](../container-apps/vnet-custom-internal.md?tabs=bash&pivots=azure-portal).
1722

1823
## Create a private DNS zone
1924

20-
Create a private DNS zone named as the Azure Container App environment’s default domain `<UNIQUE_IDENTIFIER>.<REGION_NAME>.azurecontainerapps.io`, with an A record.
25+
Create a private DNS zone named as the default domain of the Azure Container Apps environment - `<UNIQUE_IDENTIFIER>.<REGION_NAME>.azurecontainerapps.io` - with an A record.
2126

2227
Use the following command to get the default domain of Azure Container Apps environment.
2328

@@ -89,4 +94,5 @@ echo "Press [ENTER] to continue ..."
8994

9095
## Next steps
9196

92-
- [Azure Spring Apps documentation](./index.yml)
97+
> [!div class="nextstepaction"]
98+
> [Deploy an event-driven application to Azure Spring Apps with the Standard consumption plan](./quickstart-deploy-event-driven-app-standard-consumption.md)

articles/spring-apps/how-to-analyze-logs-and-metrics-consumption-plan.md renamed to articles/spring-apps/quickstart-analyze-logs-and-metrics-standard-consumption.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: Analyze logs and metrics in the Azure Spring Apps Standard consumption plan
2+
title: Quickstart - Analyze logs and metrics in the Azure Spring Apps Standard consumption plan
33
description: Learn how to analyze logs and metrics in the Azure Spring Apps Standard consumption plan.
44
author: KarlErickson
55
ms.author: shiqiu
66
ms.service: spring-apps
7-
ms.topic: how-to
8-
ms.date: 3/14/2023
7+
ms.topic: quickstart
8+
ms.date: 3/21/2023
99
ms.custom: devx-track-java
1010
---
1111

12-
# Analyze logs and metrics in the Azure Spring Apps Standard consumption plan
12+
# Quickstart: Analyze logs and metrics in the Azure Spring Apps Standard consumption plan
1313

1414
> [!NOTE]
1515
> Azure Spring Apps is the new name for the Azure Spring Cloud service. Although the service has a new name, you'll see the old name in some places for a while as we work to update assets such as screenshots, videos, and diagrams.
@@ -21,7 +21,8 @@ This article shows you how to analyze logs and metrics in the Azure Spring Apps
2121
## Prerequisites
2222

2323
- An Azure subscription. If you don't have a subscription, create a [free account](https://azure.microsoft.com/free/) before you begin.
24-
- If you're deploying Azure Spring Apps Enterprise tier for the first time in the target subscription, see the [Prerequisites](./how-to-enterprise-marketplace-offer.md#prerequisites) section of [View Azure Spring Apps Enterprise tier offering in Azure Marketplace](./how-to-enterprise-marketplace-offer.md).
24+
- An Azure Spring Apps Standard consumption plan service instance. For more information, see [Quickstart: Provision an Azure Spring Apps Standard consumption plan service instance](quickstart-provision-standard-consumption-service-instance.md).
25+
- A Spring app deployed to Azure Spring Apps. For more information, see [Quickstart: Build and deploy apps to Azure Spring Apps](quickstart-deploy-apps.md).
2526

2627
## Analyze logs
2728

@@ -136,4 +137,5 @@ Optionally, you can create filters to limit the data shown based on application
136137

137138
## Next steps
138139

139-
[Azure Spring Apps documentation](./index.yml)
140+
> [!div class="nextstepaction"]
141+
> [How to enable your own persistent storage in Azure Spring Apps with the Standard consumption plan](./how-to-custom-persistent-storage-with-standard-consumption.md)

articles/spring-apps/quickstart-apps-autoscale.md renamed to articles/spring-apps/quickstart-apps-autoscale-standard-consumption.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ ms.custom: devx-track-java
1111

1212
# Quickstart: Set up autoscale for applications in Azure Spring Apps Standard consumption plan
1313

14+
> [!NOTE]
15+
> Azure Spring Apps is the new name for the Azure Spring Cloud service. Although the service has a new name, you'll see the old name in some places for a while as we work to update assets such as screenshots, videos, and diagrams.
16+
17+
**This article applies to:** ✔️ Standard consumption (Preview) ❌ Basic/Standard ❌ Enterprise
18+
1419
This article describes how to set up autoscale rules for your applications in Azure Spring Apps Standard consumption plan. The plan uses an Azure Container Apps environment to host your Spring applications, and provides the following management and support:
1520

1621
- Manages automatic horizontal scaling through a set of declarative scaling rules.
@@ -21,8 +26,8 @@ For more information, see [Azure Container Apps documentation](../container-apps
2126
## Prerequisites
2227

2328
- An Azure subscription. If you don't have an Azure subscription, see [Azure free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
24-
- A deployed Azure Spring Apps service instance.
25-
- At least one application already created in your service instance.
29+
- An Azure Spring Apps Standard consumption plan service instance. For more information, see [Quickstart: Provision an Azure Spring Apps Standard consumption plan service instance](quickstart-provision-standard-consumption-service-instance.md).
30+
- A Spring app deployed to Azure Spring Apps. For more information, see [Quickstart: Build and deploy apps to Azure Spring Apps](quickstart-deploy-apps.md).
2631

2732
## Scale definition
2833

@@ -100,4 +105,5 @@ echo "Press [ENTER] to continue ..."
100105

101106
## Next steps
102107

103-
- [Azure Spring Apps documentation](./index.yml)
108+
> [!div class="nextstepaction"]
109+
> [Map a custom domain to Azure Spring Apps with the Standard consumption plan](./quickstart-standard-consumption-custom-domain.md)

articles/spring-apps/quickstart-deploy-event-driven-app-standard-consumption.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to deploy an event-driven application to Azure Spring App
44
author: karlerickson
55
ms.service: spring-apps
66
ms.topic: quickstart
7-
ms.date: 03/17/2023
7+
ms.date: 03/21/2023
88
ms.author: rujche
99
ms.custom: devx-track-java, devx-track-azurecli, mode-other, event-tier1-build-2022, engagement-fy23
1010
---
@@ -21,7 +21,7 @@ ms.custom: devx-track-java, devx-track-azurecli, mode-other, event-tier1-build-2
2121

2222
This article explains how to deploy a Spring Boot event-driven application to Azure Spring Apps with the Standard consumption plan.
2323

24-
The sample project is an event-driven application that subscribes to a [Service Bus queue](/azure/service-bus-messaging/service-bus-queues-topics-subscriptions#queues) named `lower-case`, and then handles the message and sends another message to another queue named `upper-case`. To make the app simple, message processing just converts the message to uppercase. The following diagram depicts this process:
24+
The sample project is an event-driven application that subscribes to a [Service Bus queue](../service-bus-messaging/service-bus-queues-topics-subscriptions.md#queues) named `lower-case`, and then handles the message and sends another message to another queue named `upper-case`. To make the app simple, message processing just converts the message to uppercase. The following diagram depicts this process:
2525

2626
:::image type="content" source="media/quickstart-deploy-event-driven-app-standard-consumption/diagram.png" alt-text="Diagram of Spring event-driven app architecture." lightbox="media/quickstart-deploy-event-driven-app-standard-consumption/diagram.png":::
2727

@@ -38,13 +38,13 @@ Use the following steps to prepare the sample locally.
3838

3939
1. The sample project is ready on GitHub. Clone sample project by using the following command:
4040

41-
```shell
41+
```bash
4242
git clone https://github.com/Azure-Samples/ASA-Samples-Event-Driven-Application.git
4343
```
4444

4545
1. Build the sample project by using the following commands:
4646

47-
```shell
47+
```bash
4848
cd ASA-Samples-Event-Driven-Application
4949
./mvnw clean package -DskipTests
5050
```
@@ -153,15 +153,13 @@ Use the following steps to create the environment:
153153

154154
## Create the Azure Spring Apps instance
155155

156-
An Azure Spring Apps Consumption plan instance hosts the Spring event-driven app. Use the following steps to create the service instance and then create an app inside the instance.
156+
An Azure Spring Apps Standard consumption plan instance hosts the Spring event-driven app. Use the following steps to create the service instance and then create an app inside the instance.
157157

158-
1. Install the Spring extension designed for `StandardGen2` Azure Spring Apps by using the following command:
158+
1. Install the Azure CLI extension designed for Azure Spring Apps Standard consumption by using the following command:
159159

160160
```azurecli
161161
az extension remove --name spring && \
162-
az extension add \
163-
--source https://ascprivatecli.blob.core.windows.net/cli-extension/spring-1.8.0-py3-none-any.whl \
164-
--yes
162+
az extension add --name spring
165163
```
166164

167165
1. Register the `Microsoft.AppPlatform` provider for the Azure Spring Apps by using the following command:
@@ -254,6 +252,11 @@ echo "Press [ENTER] to continue ..."
254252

255253
## Next steps
256254

255+
> [!div class="nextstepaction"]
256+
> [Set up autoscale for applications in Azure Spring Apps Standard consumption plan](./quickstart-apps-autoscale-standard-consumption.md)
257+
258+
For more information, see the following articles:
259+
257260
- [Azure Spring Apps Samples](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples).
258261
- [Spring on Azure](/azure/developer/java/spring/)
259262
- [Spring Cloud Azure](/azure/developer/java/spring-framework/)

0 commit comments

Comments
 (0)