Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased
- Make risk level column in Overview of Unit Tested Modules (in DTP and DTR) wrappable ([#144](https://github.com/opendevstack/ods-document-generation-templates/pull/144))
- TIR changes: Wording changes to be more inclusive of helm deployments. Also removes language mentioning "pods" as these are dynamic and may change over time ([#146](https://github.com/opendevstack/ods-document-generation-templates/pull/146))


## 1.2.8 - 2024-06-06
- RA doc in section 4.1 has got a typo in Description of column Requirement ([#142](https://github.com/opendevstack/ods-document-generation-templates/pull/142))
Expand Down
61 changes: 54 additions & 7 deletions templates/TIR.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
<p><b>Note:</b> {{deployNote}}</p>

{{#data.repo}}
<p>The following components have been successfully installed:<b>{{id}}</b></p>
<p>The following component has been successfully installed: <b>{{id}}</b></p>
{{#openShiftData}}
<table>
{{#builds}}
Expand All @@ -203,6 +203,52 @@
</table>
</tr>
{{/builds}}
{{/openShiftData}}
{{#if deployment}}
{{#deployment}}
<tr>
<table>
{{#status}}
<tr>
<b>Deployment Status</b>
<table>
<thead>
<th>Name</th>
<th class="content-wrappable">Value</th>
</thead>
<tbody>
{{#each .}}
<tr>
<td>{{@key}}</td><td class="content-wrappable">{{this}}</td>
Comment thread
anteloro-boeh marked this conversation as resolved.
Outdated
<tr>
{{/each}}
</tbody>
</table>
</tr>
{{/status}}
{{#mean}}
<tr>
<b>Deployment Mean</b>
<table>
<thead>
<th>Name</th>
<th class="content-wrappable">Value</th>
</thead>
<tbody>
{{#each .}}
<tr>
<td>{{@key}}</td><td class="content-wrappable">{{this}}</td>
Comment thread
anteloro-boeh marked this conversation as resolved.
Outdated
<tr>
{{/each}}
</tbody>
</table>
</tr>
{{/mean}}
</table>
</tr>
{{/deployment}}
{{else}}
{{#openShiftData}}
{{#deployments}}
<tr>
<table>
Expand All @@ -229,6 +275,7 @@
{{/deployments}}
</table>
{{/openShiftData}}
{{/if}}
{{/data.repo}}
</div>

Expand Down Expand Up @@ -259,17 +306,17 @@
<tbody>
<tr>
<td class="lean">1</td>
<td class="content-wrappable">automated configuration appplication (Q/P environment)</td>
<td class="content-wrappable">Automated configuration appplication (Q/P environment)</td>
<td class="content-wrappable">Configuration applied</td>
<td class="content-wrappable">Configuration applied</td>
<td class="lean">pass</td>
<td class="lean">Pass</td>
</tr>
<tr>
<td class="lean">2</td>
<td class="content-wrappable">POD is running</td>
<td class="content-wrappable">POD is in status running</td>
<td class="content-wrappable">POD is in status running</td>
<td class="lean">pass</td>
<td class="content-wrappable">Wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment, StatefulSet, or ReplicaSet are in a ready state</td>
<td class="content-wrappable">Applicable resources are in ready state</td>
<td class="content-wrappable">Applicable resources are in ready state</td>
<td class="lean">Pass</td>
</tr>
</tbody>
</table>
Expand Down