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-eureka-server-usage.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: Configure settings for the Spring Cloud Eureka Server component in Azure Container Apps (preview)
3
-
description: Learn to configure the Spring Cloud Eureka Server component in Azure Container Apps.
2
+
title: Configure settings for the Eureka Server for Spring component in Azure Container Apps (preview)
3
+
description: Learn to configure the Eureka Server for Spring component in Azure Container Apps.
4
4
services: container-apps
5
5
author: craigshoemaker
6
6
ms.service: container-apps
@@ -9,9 +9,9 @@ ms.date: 03/15/2024
9
9
ms.author: cshoe
10
10
---
11
11
12
-
# Configure settings for the Spring Cloud Eureka Server component in Azure Container Apps (preview)
12
+
# Configure settings for the Eureka Server for Spring component in Azure Container Apps (preview)
13
13
14
-
Spring Cloud Eureka Server is mechanism for centralized service discovery for microservices. Use the following guidance to learn how to configure and manage your Spring Cloud Eureka Server component.
14
+
Eureka Server for Spring is mechanism for centralized service discovery for microservices. Use the following guidance to learn how to configure and manage your Eureka Server for Spring component.
15
15
16
16
## Show
17
17
@@ -53,14 +53,14 @@ az containerapp update \
53
53
54
54
## Allowed configuration list for your Spring Cloud Eureka
55
55
56
-
The following list details supported configurations. You can find more details in [Spring Cloud Eureka Server](https://cloud.spring.io/spring-cloud-netflix/reference/html/#spring-cloud-eureka-server).
56
+
The following list details supported configurations. You can find more details in [Eureka Server for Spring](https://cloud.spring.io/spring-cloud-netflix/reference/html/#spring-cloud-eureka-server).
57
57
58
58
> [!NOTE]
59
59
> Please submit support tickets for new feature requests.
60
60
61
61
### Configuration options
62
62
63
-
The `az containerapp update` command uses the `--configuration` parameter to control how the Spring Cloud Eureka Server is configured. You can use multiple parameters at once as long as they're separated by a space. You can find more details in [Spring Cloud Eureka Server](https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_discovery_first_bootstrap_using_eureka_and_webclient) docs.
63
+
The `az containerapp update` command uses the `--configuration` parameter to control how the Eureka Server for Spring is configured. You can use multiple parameters at once as long as they're separated by a space. You can find more details in [Eureka Server for Spring](https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_discovery_first_bootstrap_using_eureka_and_webclient) docs.
64
64
65
65
The following configuration settings are available on the `eureka.server` configuration property.
66
66
@@ -181,4 +181,4 @@ Now you have a caller and callee application that communicate with each other us
181
181
## Next steps
182
182
183
183
> [!div class="nextstepaction"]
184
-
> [Tutorial:Connect to a managed SpringCloudEurekaServer](spring-cloud-eureka-server.md)
184
+
> [Tutorial:Connect to a managed EurekaServerforSpring](java-eureka-server.md)
Copy file name to clipboardExpand all lines: articles/container-apps/java-eureka-server.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: "Tutorial: Connect to a managed Spring Cloud Eureka Server in Azure Container Apps"
3
-
description: Learn to use a managed Spring Cloud Eureka Server in Azure Container Apps.
2
+
title: "Tutorial: Connect to a managed Eureka Server for Spring in Azure Container Apps"
3
+
description: Learn to use a managed Eureka Server for Spring in Azure Container Apps.
4
4
services: container-apps
5
5
author: craigshoemaker
6
6
ms.service: container-apps
@@ -10,9 +10,9 @@ ms.date: 03/15/2024
10
10
ms.author: cshoe
11
11
---
12
12
13
-
# Tutorial: Connect to a managed Spring Cloud Eureka Server in Azure Container Apps (preview)
13
+
# Tutorial: Connect to a managed Eureka Server for Spring in Azure Container Apps (preview)
14
14
15
-
Spring Cloud Eureka Server is a service registry that allows microservices to register themselves and discover other services. Available as an Azure Container Apps component, you can bind your container app to a Spring Cloud Eureka Server for automatic registration with the Eureka server.
15
+
Eureka Server for Spring is a service registry that allows microservices to register themselves and discover other services. Available as an Azure Container Apps component, you can bind your container app to a Eureka Server for Spring for automatic registration with the Eureka server.
16
16
17
17
In this tutorial, you learn to:
18
18
@@ -34,7 +34,7 @@ To complete this project, you need the following items:
34
34
35
35
## Considerations
36
36
37
-
When running in Spring Cloud Eureka Server in Azure Container Apps, be aware of the following details:
37
+
When running in Eureka Server for Spring in Azure Container Apps, be aware of the following details:
38
38
39
39
| Item | Explanation |
40
40
|---|---|
@@ -46,7 +46,7 @@ When running in Spring Cloud Eureka Server in Azure Container Apps, be aware of
46
46
47
47
## Setup
48
48
49
-
Before you begin to work with the Spring Cloud Eureka Server, you first need to create the required resources.
49
+
Before you begin to work with the Eureka Server for Spring, you first need to create the required resources.
50
50
51
51
Execute the following commands to create your resource group, container apps environment.
52
52
@@ -113,7 +113,7 @@ Now that you have an existing environment, you can create your container app and
1. Create the container app and bind to the Spring Cloud Eureka Server.
116
+
1. Create the container app and bind to the Eureka Serverfor Spring.
117
117
118
118
```azurecli
119
119
az containerapp create \
@@ -131,7 +131,7 @@ Now that you have an existing environment, you can create your container app and
131
131
132
132
This command returns the URL of your container app that consumes registers with the Eureka server component. Copy the URL to a text editor so you can use it in a coming step.
133
133
134
-
Navigate top the `/allRegistrationStatus` route view all applications registered with the Spring Cloud Eureka Server.
134
+
Navigate top the `/allRegistrationStatus` route view all applications registered with the Eureka Serverfor Spring.
135
135
136
136
The binding injects several configurations into the application as environment variables, primarily the `eureka.client.service-url.defaultZone` property. This property indicates the internal endpoint of the Eureka Server Java component.
137
137
@@ -160,4 +160,4 @@ az group delete \
160
160
## Next steps
161
161
162
162
> [!div class="nextstepaction"]
163
-
> [Configure Spring Cloud Eureka Server settings](spring-cloud-eureka-server-usage.md)
163
+
> [Configure Eureka Server for Spring settings](java-eureka-server-usage.md)
0 commit comments