Skip to content

Commit 60c80e9

Browse files
Merge pull request #271386 from m-reza-rahman/patch-2
Minor fixes
2 parents 5bfdb02 + 00ab541 commit 60c80e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/aks/howto-deploy-java-liberty-app.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following steps guide you to create a Liberty runtime on AKS. After completi
5959
1. Create a new resource group. Because resource groups must be unique within a subscription, pick a unique name. An easy way to have unique names is to use a combination of your initials, today's date, and some identifier. For example, `ejb0913-java-liberty-project-rg`.
6060
1. Select *East US* as **Region**.
6161

62-
1. Create environment variables in your shell for the resource group name for the cluster.
62+
1. Create an environment variable in your shell for the resource group name for the cluster.
6363

6464
### [Bash](#tab/in-bash)
6565

@@ -116,7 +116,7 @@ If you navigated away from the **Deployment is in progress** page, the following
116116
117117
---
118118
119-
These values are used later in this article. Note that several other useful commands are listed in the outputs.
119+
These values are used later in this article. Several other useful commands are listed in the outputs.
120120
121121
> [!NOTE]
122122
> You may notice a similar output named **appDeploymentYaml**. The difference between output *appDeploymentTemplateYaml* and *appDeploymentYaml* is:
@@ -127,18 +127,18 @@ If you navigated away from the **Deployment is in progress** page, the following
127127
128128
[!INCLUDE [create-azure-sql-database](includes/jakartaee/create-azure-sql-database.md)]
129129
130-
Create environment variables in your shell for the resource group name for the database.
130+
1. Create an environment variable in your shell for the resource group name for the database.
131131
132132
### [Bash](#tab/in-bash)
133133
134134
```bash
135-
export DB_RESOURCE_GROUP_NAME=<your-database-resource-group-name>
135+
export DB_RESOURCE_GROUP_NAME=<db-resource-group>
136136
```
137137
138138
### [PowerShell](#tab/in-powershell)
139139
140140
```powershell
141-
$Env:DB_RESOURCE_GROUP_NAME="<your-database-resource-group-name>"
141+
$Env:DB_RESOURCE_GROUP_NAME="<db-resource-group>"
142142
```
143143
144144
---
@@ -463,7 +463,7 @@ Use the following steps to deploy and test the application:
463463
464464
## Clean up resources
465465
466-
To avoid Azure charges, you should clean up unnecessary resources. When the cluster is no longer needed, use the [az group delete](/cli/azure/group#az-group-delete) command to remove the resource group, container service, container registry, and all related resources.
466+
To avoid Azure charges, you should clean up unnecessary resources. When the cluster is no longer needed, use the [az group delete](/cli/azure/group#az-group-delete) command to remove the resource group, container service, container registry, database, and all related resources.
467467
468468
### [Bash](#tab/in-bash)
469469

0 commit comments

Comments
 (0)