Skip to content

Commit a1dbd82

Browse files
committed
Add targetdir to cics-deploy profile
Also add a sentence to say in order to test the cics-deploy profile deploy an application. Also change the list of parameters into a table for readability.
1 parent b138d44 commit a1dbd82

File tree

1 file changed

+25
-13
lines changed

1 file changed

+25
-13
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).

0 commit comments

Comments
 (0)