Skip to content

Commit 2db2eeb

Browse files
authored
Merge pull request #285 from markcocker/dev
Doc tweaks
2 parents db7691f + f35cab5 commit 2db2eeb

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Zowe CLI lets you define arguments and options for commands in multiple ways
1515
2. Environment variables
1616
3. Profiles
1717

18-
Therefore by creating and setting options in the following profiles, they will become your defaults and do not need to repeat them on Zowe CLI command unless you wish to override them. This provides flexibility when you issue commands and write automation scripts. Further detail is in [Understanding command option order of precedence](https://zowe.github.io/docs-site/latest/user-guide/cli-configuringcli.html#understanding-command-option-order-of-precedence).
18+
Therefore by creating and setting options in the following profiles, they will become your defaults and you do not need to repeat them when using Zowe CLI commands unless you wish to override them. Further details are in [Understanding command option order of precedence](https://zowe.github.io/docs-site/latest/user-guide/cli-configuringcli.html#understanding-command-option-order-of-precedence).
1919

2020
The CICS deploy plug-in makes use of the following profiles:
2121

docs/pages/cdp/cdp-Provisioning-a-CICS-region.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,21 @@ Before you can provision a CICS region, a z/OS PT image needs to be created and
4848
zowe zos-uss issue ssh "zospt --help"
4949
```
5050

51-
5. Provision your CICS region.
51+
5. List the z/OS PT images available for you to use.
5252

53-
Update `--name` to specify a name for the container that is easy to remember for use in later commands. This command may take a few minutes to complete.
53+
```tex
54+
zowe zos-uss issue ssh "zospt images"
55+
```
56+
57+
6. Provision your CICS region.
58+
59+
Update `cics_55_nodejs` to the name of the image, and `--name` to specify a name for the container that is easy to remember for use in later commands. This command may take a few minutes to complete.
5460

5561
```console
5662
zowe zos-uss issue ssh "zospt run cics_55_nodejs --name my_cics_region"
5763
```
5864

59-
6. Display your CICS region information.
65+
7. Display your CICS region information.
6066

6167
```console
6268
zowe zos-uss issue ssh "zospt inspect my_cics_region"
@@ -78,7 +84,7 @@ Before you can provision a CICS region, a z/OS PT image needs to be created and
7884
| dfhconfig/nodejsprofiles/general.profile | General profile containing values for WORK_DIR and NODE_HOME. Node.js application should include this by adding `%INCLUDE=&USSCONFIG;/nodejsprofiles/general.profile` to their CICS Node.js application profile |
7985
| workdir/ | Trace, log and configuration files create by applications, Node.js runtimes, Java runtimes, and CICS runtimes |
8086

81-
7. Update your Zowe CLI cics-deploy profile to deploy to your CICS region by default.
87+
8. Update your Zowe CLI cics-deploy profile to deploy to your CICS region by default.
8288

8389
Update `--scope` to specify the value from DFH_REGION_APPLID, and `--target-directory` to specify the `bundles` subdirectory of DFH_REGION_ZFS_DIRECTORY. For example:
8490

docs/pages/cdp/cdp-Tutorials-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ Firstly, you will need a CICS region:
1919

2020
* Alternatively, work with your CICS and z/OS system administrators [Creating Zowe CLI profiles](cdp-Creating-Zowe-CLI-profiles) based on the z/OS system and CICS region you can use.
2121

22-
Next deploy an application:
22+
Next, deploy a CICS bundle containing an application to the CICS region:
2323

2424
* [Deploying a Node.js application](cdp-Deploying-a-nodejs-application) - create a Node.js application using the Express Application Generator, package it into a CICS bundle, and deploy it.
2525

2626
* [Deploying a CICS policy](cdp-Deploying-a-CICS-policy) - download a sample policy packaged in a CICS bundle, and deploy it.
2727

28-
Finally if you need more precise control of the deployment steps, for example if you are writing a CI-CD pipeline:
28+
If you need more precise control of the deployment steps, for example if you are writing a CI-CD pipeline:
2929

3030
* [Deploying using individual actions](cdp-Deploying-using-individual-actions) - steps that provide greater control when deploying a CICS bundle.

0 commit comments

Comments
 (0)