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: docs/pages/cdp/cdp-Creating-Zowe-CLI-profiles.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ The Zowe CLI lets you define arguments and options for commands in multiple ways
15
15
2. Environment variables
16
16
3. Profiles
17
17
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).
19
19
20
20
The CICS deploy plug-in makes use of the following profiles:
Copy file name to clipboardExpand all lines: docs/pages/cdp/cdp-Provisioning-a-CICS-region.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,15 +48,21 @@ Before you can provision a CICS region, a z/OS PT image needs to be created and
48
48
zowe zos-uss issue ssh "zospt --help"
49
49
```
50
50
51
-
5.Provision your CICS region.
51
+
5.List the z/OS PT images available for you to use.
52
52
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.
54
60
55
61
```console
56
62
zowe zos-uss issue ssh "zospt run cics_55_nodejs --name my_cics_region"
@@ -78,7 +84,7 @@ Before you can provision a CICS region, a z/OS PT image needs to be created and
78
84
| 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 |
79
85
| workdir/ | Trace, log and configuration files create by applications, Node.js runtimes, Java runtimes, and CICS runtimes |
80
86
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.
82
88
83
89
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:
Copy file name to clipboardExpand all lines: docs/pages/cdp/cdp-Tutorials-overview.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,12 @@ Firstly, you will need a CICS region:
19
19
20
20
* 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.
21
21
22
-
Next deploy an application:
22
+
Next, deploy a CICS bundle containing an application to the CICS region:
23
23
24
24
*[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.
25
25
26
26
*[Deploying a CICS policy](cdp-Deploying-a-CICS-policy) - download a sample policy packaged in a CICS bundle, and deploy it.
27
27
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:
29
29
30
30
*[Deploying using individual actions](cdp-Deploying-using-individual-actions) - steps that provide greater control when deploying a CICS bundle.
0 commit comments