Skip to content

Commit

Permalink
Merge branch 'master' into anax-v3.0-gnomenote-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
anaxceron authored Nov 5, 2024
2 parents 6e08422 + 0933e07 commit 5391126
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 118 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,14 +245,20 @@ Specifies the application ID used for PassTicket validation to authenticate conn
3. Define the profile for the application with the following command:
```
RDEFINE PTKTDATA <applid> UACC(NONE) APPLDATA('NO REPLAY PROTECTION') SSIGNON(KEYMASKED(<key-description>) APPLDATA('NO REPLAY PROTECTION')
RDEFINE PTKTDATA <applid> UACC(NONE) APPLDATA('NO REPLAY PROTECTION') SSIGNON(KEYMASKED(<key-description>))
```
* **`key-description`**
Specifies the secured sign-on hexadecimal application key of 16 hexadecimal digits (8-byte or 64-bit key). Each application key must be the same on all systems in the configuration and the values must be kept secret and secured.
4. Replace `key-description` with the application name defined previously.
5. Allow the application ID (_applid_) to use PassTickets:
5. Define the profile `IRRPTAUTH` in `PTKTDATA` class for the `<applid>`
```racf
RDEFINE PTKTDATA IRRPTAUTH.<applid>.* UACC(NONE)
```
6. Allow the application ID (_applid_) to use PassTickets:
```racf
PERMIT IRRPTAUTH.applid.* CLASS(PTKTDATA) ACCESS(UPDATE) ID(userid)
Expand All @@ -261,7 +267,7 @@ Specifies the application ID used for PassTicket validation to authenticate conn
* **`userid`**
Specifies the value of the LDAP Server started task.
6. Refresh the RACF PTKTDATA definition with the new profile:
7. Refresh the RACF PTKTDATA definition with the new profile:
```
SETROPTS RACLIST(PTKTDATA) REFRESH
```
Expand All @@ -279,7 +285,7 @@ Specify the following variables when generating PassTickets for the API service
* **`applid`**
The APPLID value used by the API service for PassTicket support (for example, `OMVSAPPL`)
* **`zowe-user-id`**
* **`zowe-user-id`**
The Zowe started task user ID used during the Zowe installation
Expand Down Expand Up @@ -335,6 +341,7 @@ Grant the Zowe started task user ID permission to generate PassTickets for users
**Example:**

```racf
RDEFINE PTKTDATA IRRPTAUTH.<applid>.* UACC(NONE)
PERMIT IRRPTAUTH.<applid>.* CL(PTKTDATA) ID(<zowe-user-id>) ACCESS(UPDATE)
SETROPTS RACLIST(PTKTDATA) REFRESH
```
Expand Down
20 changes: 10 additions & 10 deletions docs/user-guide/configmgr-using.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,16 @@ Zowe now publishes these schema files so that you can see all the configuration

| Component | Name | Purpose | Github Link |
|-----------|------|---------|-------------|
| Base | server-base | Validates zowe.yaml except `components` section | [link](https://github.com/zowe/zowe-install-packaging/blob/v2.x/staging/schemas/zowe-yaml-schema.json) |
| Base | server-common | Common structures reusable by other schemas | [link](https://github.com/zowe/zowe-install-packaging/blob/v2.x/staging/schemas/server-common.json) |
| Base | server-component-manifest | Validates each components' manifest.yaml | [link](https://github.com/zowe/zowe-install-packaging/blob/v2.x/staging/schemas/manifest-schema.json) |
| Base | trivial-component-schema | For copying as a starting point for developers | [link](https://github.com/zowe/zowe-install-packaging/blob/v2.x/staging/schemas/trivial-component-schema.json) |
| app-server | appfw-plugin-definition | Validates any components' pluginDefinition.json for `zwe components install` | [link](https://github.com/zowe/zlux-app-server/blob/v2.x/staging/schemas/plugindefinition-schema.json) |
| app-server | component | Validates `components.app-server` | [link](https://github.com/zowe/zlux-app-server/blob/v2.x/staging/schemas/app-server-config.json) |
| discovery | component | Validates `components.discovery` | [link](https://github.com/zowe/api-layer/blob/v2.x.x/schemas/discovery-schema.json) |
| gateway | component | Validates `components.gateway` | [link](https://github.com/zowe/api-layer/blob/v2.x.x/schemas/gateway-schema.json) |
| zss | component | Validates `components.zss` | [link](https://github.com/zowe/zss/blob/v2.x/staging/schemas/zowe-schema.json) |
| explorer-ip | component | Trivially validates `components.explorer-ip` | [link](https://github.com/zowe/explorer-ip/blob/v2.x/master/schemas/trivial-schema.json) |
| Base | server-base | Validates zowe.yaml except `components` section | [link](https://github.com/zowe/zowe-install-packaging/blob/v3.x/staging/schemas/zowe-yaml-schema.json) |
| Base | server-common | Common structures reusable by other schemas | [link](https://github.com/zowe/zowe-install-packaging/blob/v3.x/staging/schemas/server-common.json) |
| Base | server-component-manifest | Validates each components' manifest.yaml | [link](https://github.com/zowe/zowe-install-packaging/blob/v3.x/staging/schemas/manifest-schema.json) |
| Base | trivial-component-schema | For copying as a starting point for developers | [link](https://github.com/zowe/zowe-install-packaging/blob/v3.x/staging/schemas/trivial-component-schema.json) |
| app-server | appfw-plugin-definition | Validates any components' pluginDefinition.json for `zwe components install` | [link](https://github.com/zowe/zlux-app-server/blob/v3.x/staging/schemas/plugindefinition-schema.json) |
| app-server | component | Validates `components.app-server` | [link](https://github.com/zowe/zlux-app-server/blob/v3.x/staging/schemas/app-server-config.json) |
| discovery | component | Validates `components.discovery` | [link](https://github.com/zowe/api-layer/blob/v3.x.x/schemas/discovery-schema.json) |
| gateway | component | Validates `components.gateway` | [link](https://github.com/zowe/api-layer/blob/v3.x.x/schemas/gateway-schema.json) |
| zss | component | Validates `components.zss` | [link](https://github.com/zowe/zss/blob/v3.x/staging/schemas/zowe-schema.json) |
| explorer-ip | component | Trivially validates `components.explorer-ip` | [link](https://github.com/zowe/explorer-ip/blob/v3.x/master/schemas/trivial-schema.json) |

From the GitHub links above, if you want to see changes between versions, you can compare by the GitHub tags.

Expand Down
45 changes: 1 addition & 44 deletions docs/whats-new/zowe-v3-office-hours.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,57 +8,14 @@ Missed a session? Catch up here. Office hours are recorded and made available wi

## Consumer focused Office Hours



| Date | Topic | Link to the meeting | Link to the recording | Links to the materials |
| ------------------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |--------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 10/18/2024 8AM - 9AM ET | Open Office Hours | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | | |
| 10/18/2024 8AM - 9AM ET | Open Office Hours | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/-lM9a87dxXEKQwTLSsJEBkMtjbKuAO1Et_SdGCD_ibm3q0t_u6qFVsCjrLDiddNA.pY8AysnjrYBNX8hh) | [Presentation](https://ibm.box.com/s/9ctt3zbpo2ucz81bkuorz4g3v5xab0qg) |
| 10/11/2024 8AM - 9AM ET | Systems, Install & Packaging | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/ogO4Ecuefp9QwLqQVg2_zqyJ1fOO2385arJ1Ug5pQNfsL4rW-743kJBt4eneqs-m.UA9GjLdNNIaZkIDU) | [Presentation](https://ibm.box.com/shared/static/djno8xy478ym59fkmu5y8mb0rk1y6h4q.pptx) |
| 10/04/2024 8AM - 9AM ET | Explorer (Intellij) | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/O7Da70rz1tpqyacu_haEVKiW2H-5z7KGIVMTA8s54M8oYstUsPTfUAmYKAT_7KLL.M4vBDpCmWHNfpiwn) | [Presentation](https://ibm.box.com/shared/static/8b16myv1fd41dbe3woaj7ojni8qq9z1t.pptx) |
| 09/27/2024 8AM - 9AM ET | Explorer (VS Code) | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/WSrYe_G-bg3_RejWg3TMzBeckSp0X4rjGyKoWQw6b9uPCBeVBrdZ4_44V9FSYCVH.HrqajES-VpB-9e9n) | [Presentation](https://ibm.box.com/shared/static/pt4fl6tk6oxnikyzdhv08m5h9l77pepj.pptx) |
| 09/20/2024 8AM - 9AM ET | Web UI | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/25HTI5RzmBBbWrLbItbpWX0406Tt2kImbaJpDPAnPAObW4BLrrYmJi6X9X09VHkv.RRo1DPH9h_GFJDxC) | [Presentation](https://ibm.box.com/shared/static/xghjxsyuzyofezainfxrpnena7kyp3q2.pptx) |
| 09/13/2024 8AM - 9AM ET | Zowe CLI & Client Node SDK | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/ltCulqh3-PXUlUaJNYswd1Nk06l6h_pU24daQOM2RipHO-LzkyNvzaP275ze-B8.Nz3738DT-alh57jg) | [CLI Presentation](https://ibm.box.com/shared/static/zdbaaicwak3kygtf9hdt4cq7odjx9oje.pptx) <br />[Node.js SDK Presentation](https://ibm.box.com/s/q88jnt4rfzsol8ybq6sjumu3w8bucsi7) |
| 09/06/2024 8AM - 9AM ET | API Mediation Layer | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/92746535715?password=0d6d9c4d-acab-4979-9ac1-f0a99aaa75c2) | [Recording](https://zoom.us/rec/share/QOOVXWfuqf8IjCuAZgyR0O1yCEDbgLV-pZP7gU7q7RRJXuyF7h4dc3OxYBhIGc9z.7OJnf6iq55XHzP-m) | [Presentation](https://ibm.box.com/shared/static/x30uwkyat72ekuk03d1733p88l8zboy1.pptx) |
| 02/09/2024 8AM - 9AM ET | Systems Install & Packaging | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/EQ-jYYl6wnY?si=W3ei2hVVqMcR0Mcn) | [Presentation](https://ibm.box.com/s/iy5fwn7u5jcjaxfnopd9i6acjsb491qx) |
| 02/02/2024 8AM - 9AM ET | Web UI | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/KllchLDvBjs?si=WxJ4nBJrUDzqwwwW) | [Presentation](https://ibm.box.com/s/asqn9wx7qc1mfwmdn6dqnkt56xuuflaz) |
| 01/26/2024 8AM - 9AM ET | Explorer (Intellij) | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/mDlCuhizy3M?si=OlFs5mXUahH59xEl) | [Presentation](https://ibm.box.com/s/monvnv2b55v1p6cz5cpxrmeyf8m794j4) |
| 01/19/2024 8AM - 9AM ET | Explorer (VSCode) | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/ZGmD2hxJVHE?si=ra46RJu3YdkecrXu) | [Presentation](https://ibm.box.com/s/366i3i576c3r2s6kn3sqtwxzsj9lcpzm) |
| 01/12/2024 8AM - 9AM ET | Node Client SDK | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/wgzJO9eyyhA?si=dgER1FQVzwAvm_1t) | [Presentation](https://ibm.box.com/s/ujdkjfb6f1zhx4amse1x7aysdb76ai80) |
| 01/12/2024 8AM - 9AM ET | Zowe CLI | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/wgzJO9eyyhA?si=dgER1FQVzwAvm_1t) | [Presentation](https://ibm.box.com/s/aqcwrc83i8uq9llyo3kae8pjxi0p1xlb) |
| 01/05/2024 8AM - 9AM ET | API Mediation Layer | [Meeting Link](https://zoom-lfx.platform.linuxfoundation.org/meeting/95815909111?password=57c97886-d2b6-4430-9c05-1eedfa1e0fa7) | [Recording](https://youtu.be/6gkoSSypTck?si=h4DJCZ8LzZMj3rHh) | [Presentation](https://ibm.box.com/s/06rtqh1at3nd7q3lgi36ly8uum1h4adn) |


## Past Extender focused Office Hours

| Date | Topic | Link to the Meeting | Link to the Recording | Link to the Materials |
| ------------------------ | ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
| 11/10/2023 8AM - 9AM ET | Other SYSTEMS Installation & Packaging & z/OS | [Meeting link](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Recording](https://youtu.be/XdU4YTcjBaw?feature=shared) | [Presentation](https://ibm.box.com/shared/static/jrc9sfdiqipyk13enskcpri32ykg8f38.pptx) |
| 11/03/2023 8AM - 9AM ET | Web UI | [Meeting link](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Recording](https://youtu.be/xcoN3z4W_GM?feature=shared) | Not Available |
| 10/20/2023 8AM - 9AM ET | Explorer (VSCode) | [Meeting link](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Recording](https://youtu.be/Ur-yPjJyTH8?feature=shared) | [Presentation](https://ibm.box.com/s/h5nizhrgke12z63u7v1wivax126usjda) |
| 10/13/2023 8AM - 9AM ET | Zowe CLI | [Meeting link](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Recording](https://youtu.be/3DLV28Z3szE?feature=shared) | [Presentation](https://ibm.box.com/s/cdw0q1xnpnmm1wmtbjl3bk0esiqnfyox) |
| 10/06/2023 8AM - 9AM ET | API Mediation Layer | [Meeting link](https://zoom-lfx.platform.linuxfoundation.org/meeting/93849373934?password=15f05b8e-88c9-4bf5-be2b-2a48f3120129) | [Recording](https://youtu.be/6TTpRx9TyO4?feature=shared) | [Presentation](https://ibm.box.com/s/0srch736nkq0q6kcrxazt0nvgfjnxyd3) |

## Office Hours video series for Extenders

<table rules="none" align="center">
<tr>
<td>
<center>
<iframe width="280" height="200" src="https://www.youtube.com/embed/6TTpRx9TyO4?si=UOC6VmLjQKQTQtkB" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<font color="000000">API Mediation Layer</font>
</center>
</td>
<td>
<center>
<iframe width="280" height="200" src="https://www.youtube.com/embed/3DLV28Z3szE?si=smn0iOoyz25GCljv" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<font color="000000">Zowe CLI</font>
</center>
</td>
<td>
<center>
<iframe width="280" height="200" src="https://www.youtube.com/embed/Ur-yPjJyTH8?si=ZFYjbBwV4khI375_" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<font color="000000">Zowe Explorer for Visual Studio Code</font>
</center>
</td>
</tr>
</table>
Loading

0 comments on commit 5391126

Please sign in to comment.