Skip to content

Commit 4f8d894

Browse files
committed
more VMware Tanzu product name updates
1 parent c14d807 commit 4f8d894

13 files changed

+84
-75
lines changed

articles/spring-cloud/how-to-enterprise-application-configuration-service.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Use Application Configuration Service with Azure Spring Cloud Enterprise Tier
2+
title: Use Application Configuration Service for Tanzu with Azure Spring Cloud Enterprise Tier
33
titleSuffix: Azure Spring Cloud Enterprise Tier
4-
description: How to use Application Configuration service with Azure Spring Cloud Enterprise Tier.
4+
description: How to use Application Configuration Service for Tanzu with Azure Spring Cloud Enterprise Tier.
55
author: karlerickson
66
ms.author: xiading
77
ms.service: spring-cloud
@@ -10,26 +10,26 @@ ms.date: 02/09/2022
1010
ms.custom: devx-track-java
1111
---
1212

13-
# Use Application Configuration Service
13+
# Use Application Configuration Service for Tanzu
1414

1515
**This article applies to:** ❌ Basic/Standard tier ✔️ Enterprise tier
1616

17-
This article shows you how to use Application Configuration Service with Azure Spring Cloud Enterprise Tier.
17+
This article shows you how to use Application Configuration Service for VMware Tanzu® with Azure Spring Cloud Enterprise Tier.
1818

19-
[Application Configuration Service](https://docs.pivotal.io/tcs-k8s/0-1/) is one of the commercial VMware Tanzu components. It enables the management of Kubernetes-native ConfigMap resources that are populated from properties defined in one or more Git repositories.
19+
[Application Configuration Service for Tanzu](https://docs.pivotal.io/tcs-k8s/0-1/) is one of the commercial VMware Tanzu components. It enables the management of Kubernetes-native ConfigMap resources that are populated from properties defined in one or more Git repositories.
2020

21-
With Application Configuration Service, you have a central place to manage external properties for applications across all environments.
21+
With Application Configuration Service for Tanzu, you have a central place to manage external properties for applications across all environments.
2222

2323
## Prerequisites
2424

25-
- An already provisioned Azure Spring Cloud Enterprise tier instance with Application Configuration Service enabled. For more information, see [Quickstart: Provision an Azure Spring Cloud service instance using the Enterprise tier](quickstart-provision-service-instance-enterprise.md).
25+
- An already provisioned Azure Spring Cloud Enterprise tier instance with Application Configuration Service for Tanzu enabled. For more information, see [Quickstart: Provision an Azure Spring Cloud service instance using the Enterprise tier](quickstart-provision-service-instance-enterprise.md).
2626

2727
> [!NOTE]
28-
> To use Application Configuration Service, you must enable it when you provision your Azure Spring Cloud service instance. You cannot enable it after provisioning at this time.
28+
> To use Application Configuration Service for Tanzu, you must enable it when you provision your Azure Spring Cloud service instance. You cannot enable it after provisioning at this time.
2929
30-
## Manage Application Configuration Service settings
30+
## Manage Application Configuration Service for Tanzu settings
3131

32-
Application Configuration Service supports Azure DevOps, GitHub, GitLab, and Bitbucket for storing your configuration files.
32+
Application Configuration Service for Tanzu supports Azure DevOps, GitHub, GitLab, and Bitbucket for storing your configuration files.
3333

3434
To manage the service settings, open the **Settings** section and add a new entry under the **Repositories** section.
3535

@@ -54,7 +54,7 @@ Configuration will be pulled from Git backends using what is defined in a patter
5454

5555
### Authentication
5656

57-
The following image shows the three types of repository authentication supported by Application Configuration Service.
57+
The following image shows the three types of repository authentication supported by Application Configuration Service for Tanzu.
5858

5959
:::image type="content" source="media/enterprise/how-to-enterprise-application-configuration-service/config-service-auth.png" alt-text="Screenshot of where to edit authentication types.":::
6060

@@ -88,7 +88,7 @@ To validate access to the target URI, select **Validate**. After validation comp
8888

8989
Use the following steps to refresh your application configuration after you update the configuration file in the Git repository.
9090

91-
1. Load the configuration to Application Configuration Service.
91+
1. Load the configuration to Application Configuration Service for Tanzu.
9292

9393
The refresh frequency is managed by Azure Spring Cloud and fixed to 60 seconds.
9494

@@ -133,12 +133,12 @@ A Spring application holds the properties as the beans of the Spring Application
133133
curl -X POST http://{app-endpoint}/actuator/refresh
134134
```
135135

136-
## Configure Application Configuration Service settings using the portal
136+
## Configure Application Configuration Service for Tanzu settings using the portal
137137

138-
You can configure Application Configuration Service using the portal by following these steps:
138+
You can configure Application Configuration Service for Tanzu using the portal by following these steps:
139139

140140
1. Select **Application Configuration Service**.
141-
1. Select **Overview** to view the running state and resources allocated to Application Configuration Service.
141+
1. Select **Overview** to view the running state and resources allocated to Application Configuration Service for Tanzu.
142142

143143
![Application Configuration Service Overview screen](./media/enterprise/getting-started-enterprise/config-service-overview.png)
144144

@@ -148,9 +148,9 @@ You can configure Application Configuration Service using the portal by followin
148148

149149
![Application Configuration Service Settings overview](./media/enterprise/getting-started-enterprise/config-service-settings.png)
150150

151-
## Configure Application Configuration Service settings using the CLI
151+
## Configure Application Configuration Service for Tanzu settings using the CLI
152152

153-
You can configure Application Configuration Service using the CLI, by following these steps:
153+
You can configure Application Configuration Service for Tanzu using the CLI, by following these steps:
154154

155155
```azurecli
156156
az spring-cloud application-configuration-service git repo add \
@@ -160,11 +160,11 @@ az spring-cloud application-configuration-service git repo add \
160160
--label <git-branch-name>
161161
```
162162

163-
## Use Application Configuration Service with applications using the portal
163+
## Use Application Configuration Service for Tanzu with applications using the portal
164164

165-
When you use Application Configuration Service with a Git back end, keep the following items in mind.
165+
When you use Application Configuration Service for Tanzu with a Git back end, keep the following items in mind.
166166

167-
To use the centralized configurations, you must bind the app to Application Configuration Service. After binding the app, you'll need to configure which pattern to be used by the app by following these steps:
167+
To use the centralized configurations, you must bind the app to Application Configuration Service for Tanzu. After binding the app, you'll need to configure which pattern to be used by the app by following these steps:
168168

169169
1. Open the **App binding** tab.
170170

@@ -189,9 +189,9 @@ To use the centralized configurations, you must bind the app to Application Conf
189189

190190
e. Select **Save**
191191

192-
## Use Application Configuration Service with applications using the CLI
192+
## Use Application Configuration Service for Tanzu with applications using the CLI
193193

194-
You can use Application Configuration Service with applications, by using this command:
194+
You can use Application Configuration Service for Tanzu with applications, by using this command:
195195

196196
```azurecli
197197
az spring-cloud application-configuration-service bind --app <app-name>

articles/spring-cloud/how-to-enterprise-build-service.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: How to Use Build Service in Azure Spring Cloud Enterprise Tier
2+
title: How to Use Tanzu Build Service in Azure Spring Cloud Enterprise Tier
33
titleSuffix: Azure Spring Cloud Enterprise Tier
4-
description: How to Use Build Service in Azure Spring Cloud Enterprise Tier
4+
description: How to Use Tanzu Build Service in Azure Spring Cloud Enterprise Tier
55
author: karlerickson
66
ms.author: fenzho
77
ms.service: spring-cloud
@@ -10,7 +10,7 @@ ms.date: 02/09/2022
1010
ms.custom: devx-track-java, devx-track-azurecli
1111
---
1212

13-
# Use Build Service
13+
# Use Tanzu Build Service
1414

1515
**This article applies to:** ❌ Basic/Standard tier ✔️ Enterprise tier
1616

articles/spring-cloud/how-to-enterprise-marketplace-offer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To purchase in the Azure Marketplace, you must meet the following prerequisites:
3131

3232
## View Azure Spring Cloud Enterprise Tier with VMware Tanzu offering from Azure Marketplace
3333

34-
To see the offering and read a detailed description, see [Azure Spring Cloud Enterprise Tier w/VMware Tanzu](https://aka.ms/ascmpoffer).
34+
To see the offering and read a detailed description, see [Azure Spring Cloud Enterprise Tier](https://aka.ms/ascmpoffer).
3535

3636
To see the supported plans in your market, select **Plans + Pricing**.
3737

articles/spring-cloud/how-to-enterprise-service-registry.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: How to Use Service Registry with Azure Spring Cloud Enterprise Tier
2+
title: How to Use Tanzu Service Registry with Azure Spring Cloud Enterprise Tier
33
titleSuffix: Azure Spring Cloud Enterprise Tier
4-
description: How to use Service Registry with Azure Spring Cloud Enterprise Tier.
4+
description: How to use Tanzu Service Registry with Azure Spring Cloud Enterprise Tier.
55
author: karlerickson
66
ms.author: xiading
77
ms.service: spring-cloud
@@ -10,24 +10,24 @@ ms.date: 02/09/2022
1010
ms.custom: devx-track-java
1111
---
1212

13-
# Use Service Registry
13+
# Use Tanzu Service Registry
1414

1515
**This article applies to:** ❌ Basic/Standard tier ✔️ Enterprise tier
1616

17-
This article shows you how to use Service Registry with Azure Spring Cloud Enterprise Tier.
17+
This article shows you how to use VMware Tanzu® Service Registry with Azure Spring Cloud Enterprise Tier.
1818

19-
[Service Registry](https://docs.vmware.com/en/Spring-Cloud-Services-for-VMware-Tanzu/2.1/spring-cloud-services/GUID-service-registry-index.html) is one of the commercial VMware Tanzu components. It provides your apps with an implementation of the Service Discovery pattern, one of the key tenets of a Spring-based architecture. It can be difficult, and brittle in production, to hand-configure each client of a service or adopt some form of access convention. Instead, your apps can use the Service Registry to dynamically discover and call registered services.
19+
[Tanzu Service Registry](https://docs.vmware.com/en/Spring-Cloud-Services-for-VMware-Tanzu/2.1/spring-cloud-services/GUID-service-registry-index.html) is one of the commercial VMware Tanzu components. It provides your apps with an implementation of the Service Discovery pattern, one of the key tenets of a Spring-based architecture. It can be difficult, and brittle in production, to hand-configure each client of a service or adopt some form of access convention. Instead, your apps can use Tanzu Service Registry to dynamically discover and call registered services.
2020

2121
## Prerequisites
2222

23-
- An already provisioned Azure Spring Cloud Enterprise tier instance with Service Registry enabled. For more information, see [Quickstart: Provision an Azure Spring Cloud service instance using the Enterprise tier](quickstart-provision-service-instance-enterprise.md).
23+
- An already provisioned Azure Spring Cloud Enterprise tier instance with Tanzu Service Registry enabled. For more information, see [Quickstart: Provision an Azure Spring Cloud service instance using the Enterprise tier](quickstart-provision-service-instance-enterprise.md).
2424

2525
> [!NOTE]
26-
> To use Service Registry, you must enable it when you provision your Azure Spring Cloud service instance. You cannot enable it after provisioning at this time.
26+
> To use Tanzu Service Registry, you must enable it when you provision your Azure Spring Cloud service instance. You cannot enable it after provisioning at this time.
2727
2828
## Use Service Registry with apps
2929

30-
Before your application can manage service registration and discovery using Service Registry, you must include the following dependency in your application's *pom.xml* file:
30+
Before your application can manage service registration and discovery using Tanzu Service Registry, you must include the following dependency in your application's *pom.xml* file:
3131

3232
```xml
3333
<dependency>
@@ -48,7 +48,7 @@ public class DemoApplication {
4848
}
4949
```
5050

51-
Use the following steps to bind an application to the Service Registry.
51+
Use the following steps to bind an application to Tanzu Service Registry.
5252

5353
1. Open the **App binding** tab.
5454

articles/spring-cloud/how-to-prepare-app-deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,18 +297,18 @@ To enable distributed configuration, include the following `spring-cloud-config-
297297
298298
#### [Enterprise tier](#tab/enterprise-tier)
299299

300-
To enable distributed configuration in Enterprise tier, use [Application Configuration Service (ACS)](https://docs.pivotal.io/tcs-k8s/0-1/), which is one of the proprietary VMware Tanzu components. ACS is Kubernetes-native, and totally different from Spring Cloud Config Server. ACS enables the management of Kubernetes-native ConfigMap resources that are populated from properties defined in one or more Git repositories.
300+
To enable distributed configuration in Enterprise tier, use [Application Configuration Service for VMware Tanzu®](https://docs.pivotal.io/tcs-k8s/0-1/), which is one of the proprietary VMware Tanzu components. Application Configuration Service for Tanzu is Kubernetes-native, and totally different from Spring Cloud Config Server. Application Configuration Service for Tanzu enables the management of Kubernetes-native ConfigMap resources that are populated from properties defined in one or more Git repositories.
301301

302-
In Enterprise tier, there's no Spring Cloud Config Server, but you can use Application Configuration Service to manage centralized configurations. For more information, see [Use Application Configuration Service](how-to-enterprise-application-configuration-service.md)
302+
In Enterprise tier, there's no Spring Cloud Config Server, but you can use Application Configuration Service for Tanzu to manage centralized configurations. For more information, see [Use Application Configuration Service for Tanzu](how-to-enterprise-application-configuration-service.md)
303303

304-
To use Application Configuration Service, do the following steps for each of your apps:
304+
To use Application Configuration Service for Tanzu, do the following steps for each of your apps:
305305

306-
1. Add an explicit app binding to declare that your app needs to use Application Configuration Service.
306+
1. Add an explicit app binding to declare that your app needs to use Application Configuration Service for Tanzu.
307307

308308
> [!NOTE]
309309
> When you change the bind/unbind status, you must restart or redeploy the app to make the change take effect.
310310
311-
1. Set config file patterns. Config file patterns enable you to choose which application and profile the app will use. For more information, see the [Pattern](how-to-enterprise-application-configuration-service.md#pattern) section of [Use Application Configuration Service](how-to-enterprise-application-configuration-service.md).
311+
1. Set config file patterns. Config file patterns enable you to choose which application and profile the app will use. For more information, see the [Pattern](how-to-enterprise-application-configuration-service.md#pattern) section of [Use Application Configuration Service for Tanzu](how-to-enterprise-application-configuration-service.md).
312312

313313
Another option is to set the config file patterns at the same time as your app deployment, as shown in the following example:
314314

articles/spring-cloud/how-to-use-enterprise-api-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: How to use API portal with Azure Spring Cloud Enterprise Tier
2+
title: How to use API portal for VMware Tanzu with Azure Spring Cloud Enterprise Tier
33
titleSuffix: Azure Spring Cloud Enterprise Tier
4-
description: How to use API portal with Azure Spring Cloud Enterprise Tier.
4+
description: How to use API portal for VMware Tanzu with Azure Spring Cloud Enterprise Tier.
55
author: karlerickson
66
ms.author: xiading
77
ms.service: spring-cloud
@@ -10,7 +10,7 @@ ms.date: 02/09/2022
1010
ms.custom: devx-track-java, devx-track-azurecli
1111
---
1212

13-
# Use API portal
13+
# Use API portal for VMware Tanzu
1414

1515
**This article applies to:** ❌ Basic/Standard tier ✔️ Enterprise tier
1616

articles/spring-cloud/how-to-use-enterprise-spring-cloud-gateway.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: How to use Spring Cloud Gateway with Azure Spring Cloud Enterprise Tier
2+
title: How to use Spring Cloud Gateway for Tanzu with Azure Spring Cloud Enterprise Tier
33
titleSuffix: Azure Spring Cloud Enterprise Tier
4-
description: How to use Spring Cloud Gateway with Azure Spring Cloud Enterprise Tier.
4+
description: How to use Spring Cloud Gateway for Tanzu with Azure Spring Cloud Enterprise Tier.
55
author: karlerickson
66
ms.author: xiading
77
ms.service: spring-cloud
@@ -10,7 +10,7 @@ ms.date: 02/09/2022
1010
ms.custom: devx-track-java, devx-track-azurecli
1111
---
1212

13-
# Use Spring Cloud Gateway
13+
# Use Spring Cloud Gateway for Tanzu
1414

1515
**This article applies to:** ❌ Basic/Standard tier ✔️ Enterprise tier
1616

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ Access the `api gateway` and `customers service` applications from the browser u
108108
## Next steps
109109

110110
> [!div class="nextstepaction"]
111-
> [Quickstart: Set up Service Registry](quickstart-setup-service-registry-enterprise.md)
111+
> [Quickstart: Set up Tanzu Service Registry](quickstart-setup-service-registry-enterprise.md)

articles/spring-cloud/quickstart-provision-service-instance-enterprise.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ It takes about 5 minutes to finish the resource provisioning.
111111
## Next steps
112112

113113
> [!div class="nextstepaction"]
114-
> [Quickstart: Set up Application Configuration Service](quickstart-setup-application-configuration-service-enterprise.md)
114+
> [Quickstart: Set up Application Configuration Service for Tanzu](quickstart-setup-application-configuration-service-enterprise.md)

0 commit comments

Comments
 (0)