Skip to content

Commit 3ca4cd4

Browse files
authored
Merge pull request #147 from markcocker/master
Doc tweaks
2 parents b138d44 + a608a1c commit 3ca4cd4

File tree

4 files changed

+30
-16
lines changed

4 files changed

+30
-16
lines changed

docs/pages/cdp/cdp-Create-Zowe-CLI-profiles.md

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ folder: cdp
1212

1313
This profile identifies the z/OSMF server that has access to the directory on z/OS into which the CICS bundle will be deployed. You need to know the following from your z/OS system administrator:
1414

15-
* *hostname* of the z/OSMF server.
16-
* *port number* of the z/OSMF server.
17-
* *user ID* and *password* to identify yourself to the z/OSMF server.
15+
| Parameter | Description |
16+
| --- | --- |
17+
| host | Hostname of the z/OSMF server. |
18+
| port | Port number of the z/OSMF server. |
19+
| user | User ID to identify yourself to the z/OSMF server. |
20+
| password | Password to identify yourself to the z/OSMF server. |
1821

1922
For example, to create a z/OSMF profile:
2023
```console
@@ -33,9 +36,12 @@ zowe zosmf check status
3336

3437
This profile defines the parameters needed to connect. to the remote SSH server. You need to know the following from your z/OS system administrator:
3538

36-
* *hostname* of the SSH server.
37-
* *port number* of the SSH server. This will default to 22.
38-
* *user ID* and *password* to identify yourself to the SSH server.
39+
| Parameter | Description |
40+
| --- | --- |
41+
| host | Hostname of the SSH server. |
42+
| port | Port number of the SSH server. This will default to 22. |
43+
| user | User ID to identify yourself to the SSH server. |
44+
| password | Password to identify yourself to the SSH server. |
3945

4046
It is recommended that you use the same user ID and host to connect with SSH as is used in the z/OSMF profile, failure to do so results in undefined behaviour.
4147

@@ -56,17 +62,23 @@ zowe zos-uss issue ssh 'uname -a'
5662

5763
This profile identifies the CICS environment for deployment. You need to know the following from your CICS system administrator:
5864

59-
* *CPSM CICSplex name*.
60-
* *High Level Qualifier* \(HLQ\) for the CICS and CPSM data sets.
61-
* *CPSM scope* to identify the CICS region or group of regions to deploy your application.
62-
* Optional - *CICS CSD group name or CPSM BAS resource group name* into which the bundle is defined.
63-
* Optional - *JCL jobcard* to use when submitting JCL that will run the CICS utility DFHDPLOY.
65+
| Parameter | Description |
66+
| --- | --- |
67+
| cicsplex | CPSM CICSplex name. |
68+
| cicshlq | High Level Qualifier \(HLQ\) for the CICS data sets. |
69+
| cpsmhlq | High Level Qualifier \(HLQ\) for the CPSM data sets. |
70+
| scope | CPSM scope to identify the CICS region or group of regions to deploy your application. |
71+
| csdgroup | CICS CSD group name or CPSM BAS resource group name into which the bundle is defined. If not specified, BUNDLE resources are defined in CPSM BAS for installation and then removed. |
72+
| jobcard | JCL jobcard to use when submitting JCL that will run the CICS utility DFHDPLOY. If not specified, a default jobcard will be used. |
73+
| targetdir | Target zFS location to which CICS bundles should be uploaded. |
6474

6575
For example to create a cics-deploy profile:
6676
```console
67-
zowe profiles create cics-deploy-profile example --cicsplex PLEX1 --cicshlq CICSTS55.CICS720 --cpsmhlq CICSTS55.CPSM550 --scope TESTGRP1 --csdgroup BUNDGRP1 --overwrite
77+
zowe profiles create cics-deploy-profile example --cicsplex PLEX1 --cicshlq CICSTS55.CICS720 --cpsmhlq CICSTS55.CPSM550 --scope TESTGRP1 --csdgroup BUNDGRP1 --targetdir /var/cicsts/bundles
78+
--overwrite
6879
```
6980
For help on using the options:
7081
```console
7182
zowe profiles create cics-deploy-profile --help
72-
```
83+
```
84+
To test the cics-deploy profile, follow the steps in [Deploying your first app](cdp-Deploying-your-first-app).

docs/pages/cdp/cdp-Deploying-your-first-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ toc: false
2323
npm install
2424
npm start
2525
```
26-
The Node.js web server will start and you can browse to http://localhost:3000 to see the running application. Use CTRL+C to stop the Node.js web server.
26+
The Node.js web server will start and you can browse to [http://localhost:3000](http://localhost:3000) to see the running application. Use CTRL+C to stop the Node.js web server.
2727

2828
1. Package the Node.js application into a CICS bundle. The port needs to be available for use by the CICS region on z/OS.
2929

@@ -34,8 +34,8 @@ toc: false
3434
1. Deploy the CICS bundle into CICS. Replace the value for `--targetdir` with a directory on z/OS that your user ID has write access to, and the CICS region user ID has read access to.
3535

3636
```console
37-
zowe cics-deploy push bundle --name myExpressApp --targetdir /u/userid/bundles --overwrite
37+
zowe cics-deploy push bundle --name Express --targetdir /u/userid/bundles --overwrite
3838
```
3939

4040
### Results
41-
The Node.js web server will start and you can browse to http://myzos:3000 to see the running application.
41+
The Node.js web server will start and you can browse to [http://myzos:3000](http://myzos:3000) to see the running application.

docs/pages/cdp/cdp-Installation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ summary: "To install the Zowe CLI and cics-deploy plugin, perform the following
66
sidebar: cdp_sidebar
77
permalink: cdp-Installation.html
88
folder: cdp
9+
toc: false
910
---
1011

1112
1. Install [Node.js V8.0](https://nodejs.org/en/download/) or later, and Node Package Manager (npm) V5.0 or later, that are required by Zowe CLI. To verify the versions installed:

docs/pages/cdp/cdp-Requirements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ summary: "The cics-deploy plugin is dependent on several servers and facilities
66
sidebar: cdp_sidebar
77
permalink: cdp-Requirements.html
88
folder: cdp
9+
toc: false
910
---
1011

1112
### z/OS Management Facility

0 commit comments

Comments
 (0)