Skip to content

Commit 1ab3140

Browse files
Cleanup of intros to sets of steps and individual steps.
1 parent ea454a8 commit 1ab3140

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

articles/container-apps/java-microservice-get-started.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ By the end of this article, you deploy one web application and three back-end ap
4747

4848
## Setup
4949

50-
1. Create environment variables, a resource group, and an Azure Container Apps environment using the steps that follow. The environment variables contain your custom values, so replace the placeholder values surrounded by `<>` with your own values before you run the following commands:
50+
To create environment variables, a resource group, and an Azure Container Apps environment, use the following steps:
51+
52+
1. The environment variables contain your custom values, so replace the placeholder values surrounded by `<>` with your own values before you run the following commands:
5153

5254
```bash
5355
export RESOURCE_GROUP=<RESOURCE_GROUP>
@@ -198,7 +200,7 @@ To create the three Java components, use the following steps:
198200
199201
## Deploy the microservice apps
200202
201-
To deploy the Java microservice apps to Azure Container Apps using the prebuilt container images, use the steps that follow.
203+
To deploy the Java microservice apps to Azure Container Apps using the prebuilt container images, use the following steps:
202204
203205
> [!NOTE]
204206
> In this article, you use a series of [built images](https://github.com/orgs/Azure-Samples/packages?tab=packages&q=spring-petclinic) for the [Spring Petclinic microservice apps](https://github.com/spring-petclinic/spring-petclinic-microservices). You also have the option to customize the sample code and use your own images. For more information on building and deploying your own images, see the [azure-container-apps-java-samples GitHub repository](https://github.com/Azure-Samples/azure-container-apps-java-samples/tree/main/spring-petclinic-microservices/README.md).
@@ -248,7 +250,7 @@ To deploy the Java microservice apps to Azure Container Apps using the prebuilt
248250
249251
## Bind container apps to Java components
250252
251-
Next, bind together the Java components to your container apps. Use the steps that follow to create bindings that:
253+
Next, bind together the Java components to your container apps. Use the following steps to create bindings that:
252254
253255
* Inject configuration data into each app from the managed config server on startup.
254256
@@ -287,7 +289,7 @@ Use the `containerapp update` command to create bindings for each app by using t
287289
--bind $CONFIG_SERVER_COMPONENT $EUREKA_SERVER_COMPONENT $ADMIN_SERVER_COMPONENT
288290
```
289291
290-
1. Add bindings to the API gateway. Use the following command to return the URL of the front-end application, and then open this location in your browser.
292+
1. Add bindings to the API gateway. Use the following command to return the URL of the front-end application, and then open this location in your browser:
291293
292294
```azurecli
293295
az containerapp update \
@@ -350,7 +352,7 @@ Use the following steps to verify the app status:
350352
--query properties.ingress.fqdn
351353
```
352354

353-
1. Open the URL in your browser, and you should see an application that resembles the following screenshot.
355+
1. Open the URL in your browser, and you should see an application that resembles the following screenshot:
354356

355357
:::image type="content" source="media/java-microservice-get-started/azure-container-apps-pet-clinic-administration.png" alt-text="Screenshot of the pet clinic admin dashboard showing five services up, along with version information for four of the services." lightbox="media/java-microservice-get-started/azure-container-apps-pet-clinic-administration.png":::
356358

0 commit comments

Comments
 (0)