Skip to content

Commit

Permalink
docs(changelog): version 1.4.7 [citest skip]
Browse files Browse the repository at this point in the history
Update changelog and .README.html for version 1.4.7

Signed-off-by: Rich Megginson <rmeggins@redhat.com>
  • Loading branch information
richm committed Aug 1, 2024
1 parent a0d13bb commit dbd7a81
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand All @@ -70,7 +70,7 @@
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
Expand Down Expand Up @@ -205,30 +205,30 @@ <h1 id="role-variables">Role Variables</h1>
<p>These are the variables that can be passed to the role:</p>
<table>
<thead>
<tr class="header">
<tr>
<th><strong>Variable</strong></th>
<th><strong>Default</strong></th>
<th><strong>Description</strong></th>
</tr>
</thead>
<tbody>
<tr class="odd">
<tr>
<td><code>nbde_server_provider</code></td>
<td><code>tang</code></td>
<td>identifies the provider for <code>nbde_server</code> role. We
currently support <code>tang</code> as an <code>nbde_server</code>
provider, meaning that the <code>nbde_server</code> role is currently
able to provision/deploy tang servers.</td>
</tr>
<tr class="even">
<tr>
<td><code>nbde_server_service_state</code></td>
<td><code>started</code></td>
<td>indicates the state the nbde_server should be. It can be either
<code>started</code> (default) or <code>stopped</code>.
<code>started</code> means the server is accepting connections, whereas
<code>stopped</code> means it is not accepting connections.</td>
</tr>
<tr class="odd">
<tr>
<td><code>nbde_server_rotate_keys</code></td>
<td><code>false</code></td>
<td>indicates whether we should rotate existing keys -- if any -- , then
Expand All @@ -237,23 +237,23 @@ <h1 id="role-variables">Role Variables</h1>
to <code>true</code>, existing keys will be rotated and new keys will be
created.</td>
</tr>
<tr class="even">
<tr>
<td><code>nbde_server_fetch_keys</code></td>
<td><code>false</code></td>
<td>indicates whether we should fetch keys to the control node, in which
case they will be placed in <code>nbde_server_keys_dir</code>. You
<strong>must</strong> set <code>nbde_server_keys_dir</code> to use
<code>nbde_server_fetch_keys</code>.</td>
</tr>
<tr class="odd">
<tr>
<td><code>nbde_server_deploy_keys</code></td>
<td><code>false</code></td>
<td>indicates whether we should deploy the keys located in
<code>nbde_server_keys_dir</code> directory to the remote hosts. You
<strong>must</strong> set <code>nbde_server_keys_dir</code> to use
<code>nbde_server_deploy_keys</code>.</td>
</tr>
<tr class="even">
<tr>
<td><code>nbde_server_keys_dir</code></td>
<td></td>
<td>specifies a directory in the control node that contains keys to be
Expand All @@ -266,19 +266,19 @@ <h1 id="role-variables">Role Variables</h1>
<code>nbde_server_fetch_keys</code> and/or
<code>nbde_server_deploy_keys</code>.</td>
</tr>
<tr class="odd">
<tr>
<td><code>nbde_server_manage_firewall</code></td>
<td><code>false</code></td>
<td>manage the nbde server port and zone using the <code>firewall</code>
role if set to <code>true</code>.</td>
</tr>
<tr class="even">
<tr>
<td><code>nbde_server_manage_selinux</code></td>
<td><code>false</code></td>
<td>manage the nbde server port using the <code>selinux</code> role if
set to <code>true</code>.</td>
</tr>
<tr class="odd">
<tr>
<td><code>nbde_server_port</code></td>
<td><code>80</code></td>
<td>port number that tangd will listen on. You <strong>must</strong> set
Expand All @@ -287,7 +287,7 @@ <h1 id="role-variables">Role Variables</h1>
<code>nbde_server_manage_firewall: true</code> if you want the role to
manage firewall for the port.</td>
</tr>
<tr class="even">
<tr>
<td><code>nbde_server_firewall_zone</code></td>
<td><code>public</code></td>
<td>change the default zone where the port should be opened. You
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
=========

[1.4.7] - 2024-08-01
--------------------

### Bug Fixes

- fix: Remove hard dependency on selinux and firewall roles (#154)

### Other Changes

- ci: Add tft plan and workflow (#152)
- ci: Update fmf plan to add a separate job to prepare managed nodes (#155)
- ci: Bump sclorg/testing-farm-as-github-action from 2 to 3 (#156)

[1.4.6] - 2024-07-02
--------------------

Expand Down

0 comments on commit dbd7a81

Please sign in to comment.