Skip to content

Commit c2d53eb

Browse files
Update howto-deploy-java-liberty-app.md
1 parent 2b9bb1c commit c2d53eb

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

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

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,18 @@ 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-
Create environment variables in your shell for the resource group names for the cluster and the database.
62+
Create environment variables in your shell for the resource group name for the cluster.
6363

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

6666
```bash
6767
export RESOURCE_GROUP_NAME=<your-resource-group-name>
68-
export DB_RESOURCE_GROUP_NAME=<your-resource-group-name>
6968
```
7069

7170
### [PowerShell](#tab/in-powershell)
7271

7372
```powershell
7473
$Env:RESOURCE_GROUP_NAME="<your-resource-group-name>"
75-
$Env:DB_RESOURCE_GROUP_NAME="<your-resource-group-name>"
7674
```
7775

7876
---
@@ -131,6 +129,20 @@ These values will be used later in this article. Note that several other useful
131129
132130
[!INCLUDE [create-azure-sql-database](includes/jakartaee/create-azure-sql-database.md)]
133131
132+
Create environment variables in your shell for the resource group name for the database.
133+
134+
### [Bash](#tab/in-bash)
135+
136+
```bash
137+
export DB_RESOURCE_GROUP_NAME=<your-database-resource-group-name>
138+
```
139+
140+
### [PowerShell](#tab/in-powershell)
141+
142+
```powershell
143+
$Env:DB_RESOURCE_GROUP_NAME="<your-database-resource-group-name>"
144+
```
145+
134146
Now that the database and AKS cluster have been created, we can proceed to preparing AKS to host your Open Liberty application.
135147
136148
## Configure and deploy the sample application

0 commit comments

Comments
 (0)