Skip to content

Commit dbd7a81

Browse files
committed
docs(changelog): version 1.4.7 [citest skip]
Update changelog and .README.html for version 1.4.7 Signed-off-by: Rich Megginson <[email protected]>
1 parent a0d13bb commit dbd7a81

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

.README.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<style type="text/css">code{white-space: pre;}</style>
6060
<style type="text/css">
6161
pre > code.sourceCode { white-space: pre; position: relative; }
62-
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
62+
pre > code.sourceCode > span { line-height: 1.25; }
6363
pre > code.sourceCode > span:empty { height: 1.2em; }
6464
.sourceCode { overflow: visible; }
6565
code.sourceCode > span { color: inherit; text-decoration: inherit; }
@@ -70,7 +70,7 @@
7070
}
7171
@media print {
7272
pre > code.sourceCode { white-space: pre-wrap; }
73-
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
73+
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
7474
}
7575
pre.numberSource code
7676
{ counter-reset: source-line 0; }
@@ -205,30 +205,30 @@ <h1 id="role-variables">Role Variables</h1>
205205
<p>These are the variables that can be passed to the role:</p>
206206
<table>
207207
<thead>
208-
<tr class="header">
208+
<tr>
209209
<th><strong>Variable</strong></th>
210210
<th><strong>Default</strong></th>
211211
<th><strong>Description</strong></th>
212212
</tr>
213213
</thead>
214214
<tbody>
215-
<tr class="odd">
215+
<tr>
216216
<td><code>nbde_server_provider</code></td>
217217
<td><code>tang</code></td>
218218
<td>identifies the provider for <code>nbde_server</code> role. We
219219
currently support <code>tang</code> as an <code>nbde_server</code>
220220
provider, meaning that the <code>nbde_server</code> role is currently
221221
able to provision/deploy tang servers.</td>
222222
</tr>
223-
<tr class="even">
223+
<tr>
224224
<td><code>nbde_server_service_state</code></td>
225225
<td><code>started</code></td>
226226
<td>indicates the state the nbde_server should be. It can be either
227227
<code>started</code> (default) or <code>stopped</code>.
228228
<code>started</code> means the server is accepting connections, whereas
229229
<code>stopped</code> means it is not accepting connections.</td>
230230
</tr>
231-
<tr class="odd">
231+
<tr>
232232
<td><code>nbde_server_rotate_keys</code></td>
233233
<td><code>false</code></td>
234234
<td>indicates whether we should rotate existing keys -- if any -- , then
@@ -237,23 +237,23 @@ <h1 id="role-variables">Role Variables</h1>
237237
to <code>true</code>, existing keys will be rotated and new keys will be
238238
created.</td>
239239
</tr>
240-
<tr class="even">
240+
<tr>
241241
<td><code>nbde_server_fetch_keys</code></td>
242242
<td><code>false</code></td>
243243
<td>indicates whether we should fetch keys to the control node, in which
244244
case they will be placed in <code>nbde_server_keys_dir</code>. You
245245
<strong>must</strong> set <code>nbde_server_keys_dir</code> to use
246246
<code>nbde_server_fetch_keys</code>.</td>
247247
</tr>
248-
<tr class="odd">
248+
<tr>
249249
<td><code>nbde_server_deploy_keys</code></td>
250250
<td><code>false</code></td>
251251
<td>indicates whether we should deploy the keys located in
252252
<code>nbde_server_keys_dir</code> directory to the remote hosts. You
253253
<strong>must</strong> set <code>nbde_server_keys_dir</code> to use
254254
<code>nbde_server_deploy_keys</code>.</td>
255255
</tr>
256-
<tr class="even">
256+
<tr>
257257
<td><code>nbde_server_keys_dir</code></td>
258258
<td></td>
259259
<td>specifies a directory in the control node that contains keys to be
@@ -266,19 +266,19 @@ <h1 id="role-variables">Role Variables</h1>
266266
<code>nbde_server_fetch_keys</code> and/or
267267
<code>nbde_server_deploy_keys</code>.</td>
268268
</tr>
269-
<tr class="odd">
269+
<tr>
270270
<td><code>nbde_server_manage_firewall</code></td>
271271
<td><code>false</code></td>
272272
<td>manage the nbde server port and zone using the <code>firewall</code>
273273
role if set to <code>true</code>.</td>
274274
</tr>
275-
<tr class="even">
275+
<tr>
276276
<td><code>nbde_server_manage_selinux</code></td>
277277
<td><code>false</code></td>
278278
<td>manage the nbde server port using the <code>selinux</code> role if
279279
set to <code>true</code>.</td>
280280
</tr>
281-
<tr class="odd">
281+
<tr>
282282
<td><code>nbde_server_port</code></td>
283283
<td><code>80</code></td>
284284
<td>port number that tangd will listen on. You <strong>must</strong> set
@@ -287,7 +287,7 @@ <h1 id="role-variables">Role Variables</h1>
287287
<code>nbde_server_manage_firewall: true</code> if you want the role to
288288
manage firewall for the port.</td>
289289
</tr>
290-
<tr class="even">
290+
<tr>
291291
<td><code>nbde_server_firewall_zone</code></td>
292292
<td><code>public</code></td>
293293
<td>change the default zone where the port should be opened. You

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog
22
=========
33

4+
[1.4.7] - 2024-08-01
5+
--------------------
6+
7+
### Bug Fixes
8+
9+
- fix: Remove hard dependency on selinux and firewall roles (#154)
10+
11+
### Other Changes
12+
13+
- ci: Add tft plan and workflow (#152)
14+
- ci: Update fmf plan to add a separate job to prepare managed nodes (#155)
15+
- ci: Bump sclorg/testing-farm-as-github-action from 2 to 3 (#156)
16+
417
[1.4.6] - 2024-07-02
518
--------------------
619

0 commit comments

Comments
 (0)