Skip to content

Commit 03a4ccf

Browse files
committed
Bugzilla link fixes
1 parent 21064d3 commit 03a4ccf

6 files changed

+30
-31
lines changed

concourse.html.md.erb

+5-6
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,9 @@ There are two ways that you can configure the tile on the Tile Dashboard:
8989

9090
To log in to the Tile Dashboard and go to the configuration page:
9191

92-
1. Log in to your PivotalPartners.slack.com account.
92+
1. Log on to your PivotalPartners.slack.com account.
9393

94-
2. Go to the Tile Dashboard URL:
95-
[tile-dashboard.cfapps.io/static/index.html#/environments](https://tile-dashboard.cfapps.io/static/index.html#/environments).
94+
2. Go to the Tile Dashboard URL.
9695

9796
![alt-text="The icons named pie-20, pie-21, and others on a list."](img/pie-environments.png)
9897

@@ -189,7 +188,7 @@ To specify the UAA users:
189188

190189
1. At the bottom of the configuration page, click **+** to expand the box and view the text boxes.
191190

192-
![alt-text="The bottom of page shows plus button used to expand uaa properties form."](img/uaa-properties-collapsed.png)
191+
![alt-text="The bottom of the page shows plus button used to expand uaa properties form."](img/uaa-properties-collapsed.png)
193192

194193
2. Enter user name, password, and groups for the UAA user.
195194

@@ -232,7 +231,7 @@ that the Tile Dashboard can reach, that is, it must be Internet-facing.
232231
## <a id="concourse"></a> Set up a Concourse pipeline and test your tile
233232

234233
The [Tile Dashboard CI](#tile-dashboard-ci) that <%= vars.company_name %> runs for its technical partnership program members
235-
uses the CI tool [Concourse](http://concourse.ci/) to verify that partner products continue
234+
uses the CI tool [Concourse](https://tanzu.vmware.com/developer/guides/concourse-gs/) to verify that partner products continue
236235
to work with every new release of the platform.
237236

238237
You can also follow the pointers as shown later in this topic to set up your own Concourse CI pipeline
@@ -250,7 +249,7 @@ the [Tile Dashboard CI](#tile-dashboard-ci) servers can host your pipeline
250249
and provide S3 storage to exchange artifacts with your own servers.
251250

252251
If you set up your own Concourse server,
253-
see the instructions in [Concourse: Setup & Operations](https://concourse-ci.org/setup-and-operations.html).
252+
see the instructions in [Concourse: Setup & Operations](https://concourse-ci.org/index.html).
254253

255254
### <a id="pipeline"></a> Create a Concourse pipeline for your tile
256255

create-credhub-vars.html.md.erb

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ owner: CredHub
55

66
You can use CredHub to manage variables in the context of a larger deployment, and create new variables.
77

8-
## <a id='background'></a> CredHub background
9-
10-
When a tile author defines a top-level `variables` section in the product template, Ops Manager passes the `variables` section to the
8+
When a tile author defines a top-level `variables` section in the product template, Ops Manager passes
9+
the `variables` section to the
1110
product manifest.
1211

13-
Tile authors can define variables in the product template as follows:
12+
You can define variables in the product template as follows:
1413

1514
```
1615
variables:
@@ -68,7 +67,7 @@ The manifest excerpt includes references to two credentials, <code>EXAMPLE-PASSW
6867

6968
When this manifest is deployed, the BOSH Director retrieves the stored variables and replaces them with the
7069
credential values associated with each variable. The <code>EXAMPLE-TLS</code> variables include
71-
property accessors, so only the `certificate` and `private_key` components are interpolated.
70+
property accessors, because only the `certificate` and `private_key` components are interpolated.
7271

7372
```
7473
name: demo-deploy

credhub.html.md.erb

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ See the [CredHub documentation](https://docs.cloudfoundry.org/credhub/index.html
1616

1717
Many <%= vars.platform_name %> components use credentials to authenticate connections, and <%= vars.platform_name %> installations often have hundreds of active credentials. Secure credential management is essential to prevent data and security breaches.
1818

19-
In <%= vars.platform_name %> v1.11.0 and later, CredHub runs on the BOSH VM, alongside the BOSH Director and UAA. Ops Manager v1.11 stores its credentials in CredHub,
20-
and users can retrieve them using the CredHub API or the **Credentials** tab of the BOSH Director tile.
21-
Tile developers can embed CredHub calls in [manifest snippets](#snippets) and <%= vars.app_runtime_abbr %> apps can retrieve credentials using the CredHub API.
19+
In <%= vars.platform_name %> v1.11.0 and later, CredHub runs on the BOSH VM, alongside the
20+
BOSH Director and UAA. Ops Manager v1.11 and later stores its credentials in CredHub,
21+
and you can retrieve them using the CredHub API or the **Credentials** tab of the BOSH Director tile.
22+
You can embed CredHub calls in [manifest snippets](#snippets) and <%= vars.app_runtime_abbr %> apps can retrieve credentials using the CredHub API.ile developers
2223

2324
For more information about variable names and values, see [Fetching variable names and values](./get-credhub-vars.html) for how to fetch variable names and values using the CredHub API.
2425

@@ -52,7 +53,7 @@ use the JavaScript migration process. After a successful migration, Ops Manager
5253

5354
For more information about migrating Credhub credentials, see [Migrating existing credentials to CredHub](./migrating-credhub-credentials.html).
5455

55-
For more information about the Credhub API, see [CredHub API](https://credhub-api.cfapps.io), the [CredHub CLI GitHub repository](https://github.com/cloudfoundry-incubator/credhub-cli), and the [CredHub Release GitHub repository](https://github.com/pivotal-cf/credhub-release).
56+
For more information about the Credhub API, see the [CredHub CLI GitHub repository](https://github.com/cloudfoundry-incubator/credhub-cli), and the [CredHub Release GitHub repository](https://github.com/pivotal-cf/credhub-release).
5657

5758
## <a id="api-variables"></a>Fetching variable names and values
5859

@@ -62,7 +63,7 @@ For more information about variable names and values, see <a href="./get-credhub
6263

6364
## <a id="snippets"></a> CredHub in manifest snippets
6465

65-
Tile developers can embed CredHub in product template and job template manifest snippets using
66+
You can embed CredHub in product template and job template manifest snippets using
6667
[triple-parenthesis notation](./property-template-references.html#job-manifest):
6768

6869
```
@@ -82,7 +83,7 @@ Tile developers can embed CredHub in product template and job template manifest
8283

8384
* Using CredHub to generate new credentials.
8485

85-
Tile authors can choose to wait until <%= vars.platform_name %> supports some or all of these features before incorporating CredHub into their service.
86+
You can choose to wait until <%= vars.platform_name %> supports some or all of these features before incorporating CredHub into their service.
8687

8788
## <a id="resources"></a> CredHub resources
8889

environments.html.md.erb

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ for Pivotal Technical Partnership Program (PTPP) program members to develop thei
1818

1919
To use your assigned PIE environment:
2020

21-
1. Log in to the <%= vars.company_name %> [Tile Dashboard](https://tile-dashboard.cfapps.io/)
22-
using the credentials that you use for [Partners Slack](https://pivotalpartners.slack.com/).
21+
1. Log on to the <%= vars.company_name %> Tile Dashboard using the credentials that you use for [Partners Slack](https://pivotalpartners.slack.com/).
2322

2423
1. Click the `pie-xx` environment assigned to you.
2524

ssi-creds-tiledev.html.md.erb

+12-11
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ do the following:
196196

197197
1. In your service broker code, locate where your broker handles binding requests from the CC.
198198

199-
1. Add code that authenticates your service broker to CredHub using OAuth2 tokens from UAA. Each call to the CredHub API must include an authorization header. For more information about CredHub authentication, see the [CredHub API documentation](https://docs.cloudfoundry.org/api/credhub/version/2.9/).
199+
1. Add code that authenticates your service broker to CredHub using OAuth2 tokens from UAA. Each call to the CredHub API must include an authorization header. For more information about
200+
CredHub authentication, see the [Authentication](https://docs.cloudfoundry.org/api/credhub/version/2.9/#_authentication) section of the CredHub API documentation.
200201

201202
<p class="note">
202203
<span class="note__title">Note</span>
@@ -226,17 +227,17 @@ See the following example for how to format your API call:
226227
-H 'Content-type: application/json'
227228
```
228229

229-
Where:
230+
Where:
231+
* `CREDHUB.INTERNAL_URL` and `CREDHUB.PORT` are the address and port of CredHub.
230232

231-
* `CREDHUB.INTERNAL_URL` and `CREDHUB.PORT` are the address and port of CredHub.
232-
* `CLIENT-IDENTIFIER` is a value provided by the service broker to uniquely identify the broker.
233-
* `SERVICE-IDENTIFIER` is the name of the service offering as shown in the services catalog.
234-
* `BINDING-GUID` is the GUID created by the CC and passed to the service broker in the service binding request.
235-
* `CREDENTIAL-NAME` is a value provided by the service broker to name the credential.
236-
* `SERVICE-URL` is the URL of your service.
237-
* `USERNAME` and `PASSWORD` are your binding credentials.
233+
* `CLIENT-IDENTIFIER` is a value provided by the service broker to uniquely identify the broker.
234+
* `SERVICE-IDENTIFIER` is the name of the service offering as shown in the services catalog.
235+
* `BINDING-GUID` is the GUID created by the CC and passed to the service broker in the service binding request.
236+
* `CREDENTIAL-NAME` is a value provided by the service broker to name the credential.
237+
* `SERVICE-URL` is the URL of your service.
238+
* `USERNAME` and `PASSWORD` are your binding credentials.
238239

239-
For further reference, see the [Set Credentials](https://docs.vmware.com/en/VMware-Tanzu-Application-Service/<%= vars.current_major_version %>/tas-for-vms/secure-si-creds.html) section of the CredHub API documentation.
240+
For further reference, see the [Set Credentials](https://docs.vmware.com/en/VMware-Tanzu-Application-Service/4.0/tas-for-vms/secure-si-creds.html) section of the CredHub API documentation.
240241

241242
1. Grant your application permission to read the credential from CredHub:
242243

@@ -255,7 +256,7 @@ See the following example for how to format your API call:
255256

256257
Where `APP-GUID` is the GUID of the Cloud Foundry application being used
257258

258-
1. Edit your service broker so that it returns a reference to the stored credentials in response to the
259+
2. Edit your service broker so that it returns a reference to the stored credentials in response to the
259260
binding request from the CC. Return the credentials as a single key `credhub-ref` with thee value formatted
260261
as `/c/CLIENT-IDENTIFIER/SERVICE-IDENTIFIER/BINDING-GUID/CREDENTIAL-NAME`.
261262

tile-upgrades.html.md.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ constraints.
1919

2020
Changing the value of<code>single_az_only</code> for jobs started by your tile can cause data loss
2121
for upgrades to Ops Manager v1.7 versions later than v1.7.20, or v1.8 versions later than v1.8.12.
22-
To avoid this, contact <a href="https://tanzu.vmware.com/support">Support</a>.
22+
To avoid this, contact [VMware Support](https://tanzu.vmware.com/support.html).
2323

2424
## <a id='import'></a> Update Values or Property Names Using JavaScript
2525

0 commit comments

Comments
 (0)