Skip to content

Commit b1e7197

Browse files
committed
address feedback
1 parent 31235e7 commit b1e7197

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/container-apps/tutorial-java-quarkus-connect-managed-identity-postgresql-database.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ What you will learn:
1919

2020
> [!div class="checklist"]
2121
> * Configure a Quarkus app to authenticate using Azure Active Directory (Azure AD) with a PostgreSQL Database.
22-
> * Create an Azure Container Registry and push a Java app image to it.
22+
> * Create an Azure container registry and push a Java app image to it.
2323
> * Create a Container App in Azure.
2424
> * Create a PostgreSQL database in Azure.
2525
> * Connect to a PostgreSQL Database with managed identity using Service Connector.
@@ -45,7 +45,7 @@ The following example creates a resource group named `myResourceGroup` in the Ea
4545
az group create --name myResourceGroup --location eastus
4646
```
4747

48-
Create an Azure Container Registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. In the following example, `myContainerRegistry007` is used. Update this to a unique value.
48+
Create an Azure container registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command. The registry name must be unique within Azure, and contain 5-50 alphanumeric characters. In the following example, `myContainerRegistry007` is used. Update this to a unique value.
4949

5050
```azurecli
5151
az acr create \
@@ -153,7 +153,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
153153
mvnw clean package -Pnative -Dquarkus.native.container-build=true -Dquarkus.container-image.build=true -Dquarkus.container-image.registry=myContainerRegistry007 -Dquarkus.container-image.name=quarkus-postgres-passwordless-app -Dquarkus.container-image.tag=v1
154154
```
155155

156-
1. Log in to registry
156+
1. Log in to the registry.
157157

158158
Before pushing container images, you must log in to the registry. To do so, use the [az acr login][az-acr-login] command. Specify only the registry resource name when signing in with the Azure CLI. Don't use the fully qualified login server name.
159159

@@ -186,7 +186,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
186186
--location $LOCATION
187187
```
188188

189-
1. Create a container app with your app image by running the following command. Replace the placeholders with your values. To find Container Registry admin account details, please check [Authenticate with an Azure container registry](../container-registry/container-registry-authentication.md)
189+
1. Create a container app with your app image by running the following command. Replace the placeholders with your values. To find the container registry admin account details, see [Authenticate with an Azure container registry](../container-registry/container-registry-authentication.md)
190190

191191
```azurecli
192192
CONTAINER_IMAGE_NAME=quarkus-postgres-passwordless-app:v1

0 commit comments

Comments
 (0)