Skip to content

Commit 61eaa71

Browse files
rename Eureka server
1 parent 2c4f39d commit 61eaa71

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

articles/container-apps/java-eureka-server-usage.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
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.
44
services: container-apps
55
author: craigshoemaker
66
ms.service: container-apps
@@ -9,9 +9,9 @@ ms.date: 03/15/2024
99
ms.author: cshoe
1010
---
1111

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)
1313

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.
1515

1616
## Show
1717

@@ -53,14 +53,14 @@ az containerapp update \
5353

5454
## Allowed configuration list for your Spring Cloud Eureka
5555

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).
5757

5858
> [!NOTE]
5959
> Please submit support tickets for new feature requests.
6060
6161
### Configuration options
6262

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.
6464

6565
The following configuration settings are available on the `eureka.server` configuration property.
6666

@@ -181,4 +181,4 @@ Now you have a caller and callee application that communicate with each other us
181181
## Next steps
182182

183183
> [!div class="nextstepaction"]
184-
> [Tutorial: Connect to a managed Spring Cloud Eureka Server](spring-cloud-eureka-server.md)
184+
> [Tutorial: Connect to a managed Eureka Server for Spring](java-eureka-server.md)

articles/container-apps/java-eureka-server.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
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.
44
services: container-apps
55
author: craigshoemaker
66
ms.service: container-apps
@@ -10,9 +10,9 @@ ms.date: 03/15/2024
1010
ms.author: cshoe
1111
---
1212

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)
1414

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.
1616

1717
In this tutorial, you learn to:
1818

@@ -34,7 +34,7 @@ To complete this project, you need the following items:
3434

3535
## Considerations
3636

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:
3838

3939
| Item | Explanation |
4040
|---|---|
@@ -46,7 +46,7 @@ When running in Spring Cloud Eureka Server in Azure Container Apps, be aware of
4646

4747
## Setup
4848

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.
5050

5151
Execute the following commands to create your resource group, container apps environment.
5252

@@ -113,7 +113,7 @@ Now that you have an existing environment, you can create your container app and
113113
--configuration eureka.server.renewal-percent-threshold=0.85 eureka.server.eviction-interval-timer-in-ms=10000
114114
```
115115

116-
1. Create the container app and bind to the Spring Cloud Eureka Server.
116+
1. Create the container app and bind to the Eureka Server for Spring.
117117

118118
```azurecli
119119
az containerapp create \
@@ -131,7 +131,7 @@ Now that you have an existing environment, you can create your container app and
131131

132132
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.
133133

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 Server for Spring.
135135

136136
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.
137137

@@ -160,4 +160,4 @@ az group delete \
160160
## Next steps
161161
162162
> [!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

Comments
 (0)