Skip to content

Commit bc9c7cd

Browse files
Merge pull request #225170 from felipmiguel/feature/upgrade-petclinic
Upgrade references to petclinic sample
2 parents a0ae8e6 + 5908891 commit bc9c7cd

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/spring-apps/quickstart-deploy-apps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,11 @@ Use the following steps to create and deploys apps on Azure Spring Apps using th
228228
```azurecli
229229
az spring app deploy \
230230
--name api-gateway \
231-
--artifact-path spring-petclinic-api-gateway/target/spring-petclinic-api-gateway-2.5.1.jar \
231+
--artifact-path spring-petclinic-api-gateway/target/spring-petclinic-api-gateway-3.0.1.jar \
232232
--jvm-options="-Xms2048m -Xmx2048m"
233233
az spring app deploy \
234234
--name customers-service \
235-
--artifact-path spring-petclinic-customers-service/target/spring-petclinic-customers-service-2.5.1.jar \
235+
--artifact-path spring-petclinic-customers-service/target/spring-petclinic-customers-service-3.0.1.jar \
236236
--jvm-options="-Xms2048m -Xmx2048m"
237237
```
238238

@@ -268,9 +268,9 @@ To get the PetClinic app functioning with all features like Admin Server, Visits
268268
az spring app create --name admin-server --instance-count 1 --memory 2Gi --assign-endpoint
269269
az spring app create --name vets-service --instance-count 1 --memory 2Gi
270270
az spring app create --name visits-service --instance-count 1 --memory 2Gi
271-
az spring app deploy --name admin-server --jar-path spring-petclinic-admin-server/target/spring-petclinic-admin-server-2.5.1.jar --jvm-options="-Xms2048m -Xmx2048m"
272-
az spring app deploy --name vets-service --jar-path spring-petclinic-vets-service/target/spring-petclinic-vets-service-2.5.1.jar --jvm-options="-Xms2048m -Xmx2048m"
273-
az spring app deploy --name visits-service --jar-path spring-petclinic-visits-service/target/spring-petclinic-visits-service-2.5.1.jar --jvm-options="-Xms2048m -Xmx2048m"
271+
az spring app deploy --name admin-server --jar-path spring-petclinic-admin-server/target/spring-petclinic-admin-server-3.0.1.jar --jvm-options="-Xms2048m -Xmx2048m"
272+
az spring app deploy --name vets-service --jar-path spring-petclinic-vets-service/target/spring-petclinic-vets-service-3.0.1.jar --jvm-options="-Xms2048m -Xmx2048m"
273+
az spring app deploy --name visits-service --jar-path spring-petclinic-visits-service/target/spring-petclinic-visits-service-3.0.1.jar --jvm-options="-Xms2048m -Xmx2048m"
274274
```
275275

276276
#### [Maven](#tab/Maven)
@@ -378,7 +378,7 @@ To deploy to Azure, you must sign in with your Azure account with Azure Toolkit
378378
:::image type="content" source="media/quickstart-deploy-apps/deploy-to-azure-1-pet-clinic.png" alt-text="Screenshot of the IntelliJ project explorer showing how to deploy the PetClinic sample project." lightbox="media/quickstart-deploy-apps/deploy-to-azure-1-pet-clinic.png":::
379379

380380
1. In the **Name** field, append *:api-gateway* to the existing **Name**.
381-
1. In the **Artifact** textbox, select *spring-petclinic-api-gateway-2.5.1*.
381+
1. In the **Artifact** textbox, select *spring-petclinic-api-gateway-3.0.1*.
382382
1. In the **Subscription** textbox, verify your subscription.
383383
1. In the **Spring Cloud** textbox, select the instance of Azure Spring Apps that you created in [Provision Azure Spring Apps instance](./quickstart-provision-service-instance.md).
384384
1. Set **Public Endpoint** to *Enable*.

articles/spring-apps/quickstart-provision-service-instance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ You can provision an instance of the Azure Spring Apps service using the Azure p
9494

9595
## Prerequisites
9696

97-
- [JDK 8 or JDK 11](/azure/developer/java/fundamentals/java-jdk-install)
97+
- [JDK 17](/azure/developer/java/fundamentals/java-jdk-install)
9898
- An Azure subscription. If you don't have a subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
99-
- Optionally, [Azure CLI version 2.0.67 or higher](/cli/azure/install-azure-cli). Install the Azure Spring Apps extension with the following command: `az extension add --name spring`
99+
- Optionally, [Azure CLI version 2.44.0 or higher](/cli/azure/install-azure-cli). Install the Azure Spring Apps extension with the following command: `az extension add --name spring`
100100
- Optionally, [the Azure Toolkit for IntelliJ](https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij/).
101101

102102
## Provision an instance of Azure Spring Apps

articles/spring-apps/quickstart-setup-config-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ This command tells Config Server to find the configuration data in the [steeltoe
4242

4343
## Prerequisites
4444

45-
- [JDK 8 or JDK 11](/azure/developer/java/fundamentals/java-jdk-install)
45+
- [JDK 17](/azure/developer/java/fundamentals/java-jdk-install)
4646
- An Azure subscription. If you don't have a subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
47-
- Optionally, [Azure CLI version 2.0.67 or higher](/cli/azure/install-azure-cli). Install the Azure Spring Apps extension with the following command: `az extension add --name spring`
47+
- Optionally, [Azure CLI version 2.44.0 or higher](/cli/azure/install-azure-cli). Install the Azure Spring Apps extension with the following command: `az extension add --name spring`
4848
- Optionally, [the Azure Toolkit for IntelliJ](https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij/).
4949

5050
## Config Server procedures

0 commit comments

Comments
 (0)