You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/java-admin-eureka-integration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ To complete this tutorial, you need the following items:
28
28
|--|--|
29
29
| Azure account | An active subscription is required. If you don't have one, you [can create one for free](https://azure.microsoft.com/free/). |
30
30
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
31
-
| An existing Eureka Server for Spring Java component | If you don't have one, follow the [Create the Eureka Server for Spring](#create-the-eureka-server-for-spring) section to create one. |
31
+
| An existing Eureka Server for Spring Java component | If you don't have one, follow the [Create the Eureka Server for Spring](java-eureka-server.md#Create-the-Eureka-Server-for-Spring-Java-component) section to create one. |
32
32
33
33
## Considerations
34
34
@@ -91,7 +91,7 @@ Before you begin, create the necessary resources by executing the following comm
91
91
92
92
## Optional: Create the Eureka Server for Spring
93
93
94
-
1. If you don't have an existing Eureka Server for Spring, follow the command below to create the Eureka Server Java component.
94
+
1. If you don't have an existing Eureka Server for Spring, follow the command below to create the Eureka Server Java component. For more information, see [Create the Eureka Server for Spring](java-eureka-server.md#Create-the-Eureka-Server-for-Spring-Java-component).
95
95
96
96
```azurecli
97
97
az containerapp env java-component eureka-server-for-spring create \
@@ -66,7 +66,7 @@ Execute the following commands to create your resource group, container apps env
66
66
|`LOCATION`| The Azure region location where you create your container app and Java component. |
67
67
|`ENVIRONMENT`| The Azure Container Apps environment name for your demo application. |
68
68
|`RESOURCE_GROUP`| The Azure resource group name for your demo application. |
69
-
|`JAVA_COMPONENT_NAME`| The name of the Java component created for your container app. In this case, you create a Eureka Server for Spring Java component. |
69
+
|`EUREKA_COMPONENT_NAME`| The name of the Java component created for your container app. In this case, you create a Eureka Server for Spring Java component. |
70
70
|`IMAGE`| The container image used in your container app. |
71
71
72
72
1. Log in to Azure with the Azure CLI.
@@ -90,7 +90,7 @@ Execute the following commands to create your resource group, container apps env
90
90
--location $LOCATION
91
91
```
92
92
93
-
## Use the Eureka Server for Spring Java component
93
+
## Create the Eureka Server for Spring Java component
94
94
95
95
Now that you have an existing environment, you can create your container app and bind it to a Java component instance of Eureka Server for Spring.
96
96
@@ -100,18 +100,20 @@ Now that you have an existing environment, you can create your container app and
100
100
az containerapp env java-component eureka-server-for-spring create \
101
101
--environment $ENVIRONMENT \
102
102
--resource-group $RESOURCE_GROUP \
103
-
--name $JAVA_COMPONENT_NAME
103
+
--name $EUREKA_COMPONENT_NAME
104
104
```
105
105
106
-
1. Update the Eureka Server for Spring Java component configuration.
106
+
107
+
1. Optional: Update the Eureka Server for Spring Java component configuration.
107
108
108
109
```azurecli
109
110
az containerapp env java-component eureka-server-for-spring update \
0 commit comments