Skip to content

Commit 21269d9

Browse files
committed
edits
1 parent 984357a commit 21269d9

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

articles/spring-apps/consumption-dedicated/overview-migration.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,26 @@ There's no downtime unless you're using Spring Cloud Config Server and Spring Cl
7272

7373
All in-flight transactions execute without any interruptions, unless you're using Spring Cloud Config Server and Spring Cloud Service Registry, which you must manually recreate in Azure Container Apps.
7474

75-
### How can I find migrated application in Azure Container Apps?
76-
You can locate your migrated applications using one of two methods:
75+
### How can I find migrated applications in Azure Container Apps?
7776

78-
Go to the resource group with:
79-
<code>
80-
`az spring show --name <spring service instance name> --resource-group <spring service instance resource group> --query "properties.infraResourceGroup"`
81-
</code>
82-
All migrated applications of the Azure Spring Apps Service Instance will be displayed there, retaining their originally created resource names.
77+
You can find your migrated applications by using one of the following commands:
8378

84-
Navigate to the Azure Container Apps Environment that hosts your Azure Spring Apps Service Instance. List all its applications by executing the command <code>`az containerapp list --environment <environment name hosts Azure Spring Apps Service Instance>`</code>. The migrated applications will have the same names as those previously created within the Spring Apps.
79+
- To find the migrated applications starting with your Azure Spring Apps resource names, use the following command:
80+
81+
```azurecli
82+
az spring show \
83+
--resource-group <Azure-Spring-Apps-service-instance-resource-group-name> \
84+
--name <Azure-Spring-Apps-service-instance-name> \
85+
--query "properties.infraResourceGroup"
86+
```
87+
88+
- To find the migrated applications starting with your Azure Container Apps environment name, use the following command:
89+
90+
```azurecli
91+
az containerapp list --environment <Azure-Container-Apps-environment-name>
92+
```
93+
94+
These commands list all the migrated applications of the Azure Spring Apps service instance, using the original resource names.
8595

8696
### Is there any change in IP address/FQDN after the migration?
8797

0 commit comments

Comments
 (0)