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: cf-concepts.html.md.erb
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: How TAS for VMs and Ops Manager services work
2
+
title: How TAS for VMs and Tanzu Operations Manager services work
3
3
owner: Services
4
4
---
5
5
There are many ways to integrate services with <%= vars.app_runtime_full %> and <%= vars.platform_name %>. The right way for each
@@ -16,14 +16,14 @@ use the following links:
16
16
17
17
- [TAS for VMs Overview](https://docs.vmware.com/en/VMware-Tanzu-Application-Service/4.0/tas-for-vms/concepts-overview.html) provides high-level descriptions of internal functions performed by different <%= vars.app_runtime_abbr %> components.
18
18
- [Cloud Foundry Command Line Interface (cf CLI)](https://docs.vmware.com/en/VMware-Tanzu-Application-Service/4.0/tas-for-vms/cf-cli-index.html) links to topics that explain how to direct <%= vars.app_runtime_abbr %> deployment from your local command line.
19
-
- [Ops Manager](https://docs.vmware.com/en/VMware-Tanzu-Operations-Manager/3.0/vmware-tanzu-ops-manager/pcf-interface.html) describes Ops Manager and Installation Dashboard interfaces, where cloud operators view, install, configure, and deploy service tiles.
19
+
- [Tanzu Operations Manager](https://docs.vmware.com/en/VMware-Tanzu-Operations-Manager/3.0/vmware-tanzu-ops-manager/pcf-interface.html) describes Tanzu Operations Manager and Installation Dashboard interfaces, where cloud operators view, install, configure, and deploy service tiles.
20
20
- [Apps Manager](https://docs.vmware.com/en/VMware-Tanzu-Application-Service/4.0/tas-for-vms/console-index.html) describes Apps Manager interface, where app developers create and configure service instances and bind them to their apps.
21
21
22
22
## <aid="applications"></a> Applications
23
23
24
24
Cloud Foundry is primarily a cloud-native application platform. To understand how to integrate your services with Cloud Foundry, you must understand how your customers are using the platform to develop, deploy, and operate their applications.
25
25
26
-
- [Developer guide](https://docs.vmware.com/en/Tile-Developer-Guide/3.0/tile-dev-guide/index.html) explains how to push an app to run on <%=vars.platform_name%> and use services.
26
+
- [Tanzu Operations Manager Tile Developer guide](https://docs.vmware.com/en/Tile-Developer-Guide/3.0/tile-dev-guide/index.html) explains how to push an app to run on <%=vars.platform_name%> and use services.
27
27
- [Overview of logging and metrics](https://docs.vmware.com/en/Tile-Developer-Guide/3.0/tile-dev-guide/cf-concepts.html) describes how <%=vars.app_runtime_abbr%> aggregates and streams logs and metrics from the apps it hosts and from internal system components.
Copy file name to clipboardexpand all lines: service-brokers.html.md.erb
+2-2
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ has information about registering a service broker with multiple <%= vars.app_ru
26
26
* [Route services](https://docs.vmware.com/en/Tile-Developer-Guide/3.0/tile-dev-guide/route-services.html) explains how route services work, and what are the different
27
27
architectures for using them in a <%=vars.app_runtime_abbr%> deployment.
28
28
29
-
* [Example route services](https://docs.vmware.com/en/Tile-Developer-Guide/3.0/tile-dev-guide/route-services.html) gives examples of a logging route service, a rate-limiting route service, and another logging service written in Spring Boot. It also offers a tutorial on
30
-
setting up the logging route service.
29
+
* [Example route services](https://docs.vmware.com/en/Tile-Developer-Guide/3.0/tile-dev-guide/route-services.html) gives examples of a logging route service, a rate-limiting route service, and another logging service written in Spring Boot.
30
+
It also offers a tutorial on the set up of a logging route service.
Copy file name to clipboardexpand all lines: tile-structure.html.md.erb
+6-6
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,13 @@ main executive component, and the service. For more information, see [Service Br
30
30
31
31
* Publish a catalog of available service plans to the **Services Marketplace**. For more information, see [Catalog](#catalog).
32
32
33
-
* Define an interface for configuring service properties in Ops Manager. For more information, see [Configuration](#configure).
33
+
* Define an interface for configuring service properties in Tanzu Operations Manager. For more information, see [Configuration](#configure).
34
34
35
35
* Generate a BOSH manifest for deploying instances of the service, populating it with both user-configured and fixed properties. For more information, see [Fixed Properties](#fixed).
36
36
37
37
* Run BOSH errands: deploy errands that set <%=vars.app_runtime_abbr%> up to run the service when an operator first deploys the service, and delete errands that clean up when an operator deletes the service. For more information, see [Errands](#errands).
38
38
39
-
* Define dependencies for the tile, to prevent Ops Manager from installing the service when its dependencies are missing. For more information, see [Dependencies](#dependencies).
39
+
* Define dependencies for the tile, to prevent Tanzu Operations Manager from installing the service when its dependencies are missing. For more information, see [Dependencies](#dependencies).
40
40
41
41
* Support one-click installation and upgrading from previous versions. For more information, see [Update Rules](#update).
42
42
@@ -76,7 +76,7 @@ listed in the [Service Metadata](https://github.com/openservicebrokerapi/service
76
76
77
77
### <aid='configure'></a> Configuration
78
78
79
-
In the Ops Manager Installation Dashboard, service tiles present a form-based interface that you can use to configure the service. These configured properties become part of the BOSH manifest that <%=vars.platform_name%> uses to deploy instances of the service.
79
+
In the Tanzu Operations Manager Installation Dashboard, service tiles present a form-based interface that you can use to configure the service. These configured properties become part of the BOSH manifest that <%=vars.platform_name%> uses to deploy instances of the service.
80
80
81
81
You define this configuration interface in the `forms:` section of the `tile.yml` configuration file
82
82
that you pass to the Tile Generator. Each named form element defines a configuration pane accessible
@@ -103,7 +103,7 @@ in two locations: a <code>form_types</code> section that defines the contents an
103
103
104
104
#### <aid='appearance'></a> Tile appearance
105
105
106
-
In the Ops Manager Installation Dashboard, your service tile has an identifying label,
106
+
In the Tanzu Operations Manager Installation Dashboard, your service tile has an identifying label,
107
107
description, and logo icon. Specify these at the top of your `tile.yml` configuration file as
108
108
`label`, `description`, and `icon_file`. The value of `icon_file` can be the name of a 128×128 pixel PNG image.
109
109
@@ -155,7 +155,7 @@ After the dependency is installed, it is mandatory even if marked as optionaass=
155
155
156
156
<pclass="note">
157
157
<spanclass="note__title">Note</span>
158
-
After the dependency is installed, it is mandatory even if marked as option.
158
+
After the dependency is installed, it's mandatory even if marked as option.
159
159
</p>
160
160
161
161
Include product dependencies under `requires_product_versions` at the top of
@@ -177,7 +177,7 @@ requires_product_versions:
177
177
### <aid='update'></a> Update rules
178
178
179
179
Tile Generator automatically generates the JavaScript migration file that allows one-click updates
180
-
from Ops Manager. This file describes how to change existing tile property names and
180
+
from Tanzu Operations Manager. This file describes how to change existing tile property names and
181
181
values to match the new version of the tile.
182
182
183
183
A tile can contain several of these `.js` files, from previous versions
0 commit comments