Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(changelog): version 1.17.0 [citest skip] #450

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
18 changes: 16 additions & 2 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 @@ -206,6 +206,10 @@ <h2 id="storage_pools"><code>storage_pools</code></h2>
<li><p><code>type</code></p>
<p>This specifies the type of pool to manage. Valid values for
<code>type</code>: <code>lvm</code>.</p></li>
<li><p><code>grow_to_fill</code></p>
<p>When set, the pool Physical Volumes will be resized to match their
respective device sizes. (e.g. after Virtual Machine disk size
increase)</p></li>
<li><p><code>shared</code></p>
<p>If set to <code>true</code>, the role creates or manages a shared
volume group. Requires lvmlockd and dlm services configured and
Expand Down Expand Up @@ -255,6 +259,16 @@ <h2 id="storage_pools"><code>storage_pools</code></h2>
<p>s the LUKS key size (in bytes).</p></li>
<li><p><code>encryption_luks_version</code></p>
<p>This integer specifies the LUKS version to use.</p></li>
<li><p><code>encryption_clevis_pin</code></p>
<p>For Stratis pools, the clevis method that should be used to encrypt
the created pool. Accepted values are: <code>tang</code> and
<code>tpm2</code></p></li>
<li><p><code>encryption_tang_url</code></p>
<p>When creating a Stratis pool encrypted via NBDE using a tang server,
specifies the URL of the server.</p></li>
<li><p><code>encryption_tang_thumbprint</code></p>
<p>When creating a Stratis pool encrypted via NBDE using a tang server,
specifies the thumbprint of the server.</p></li>
</ul>
<h2 id="storage_volumes"><code>storage_volumes</code></h2>
<p>The <code>storage_volumes</code> variable is a list of volumes to
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Changelog
=========

[1.17.0] - 2024-06-11
--------------------

### New Features

- feat: PV resize support (#438)
- feat: Stratis support (#439)

### Bug Fixes

- fix: Fix 'possibly-used-before-assignment' pylint issues (#440)
- fix: Get same sector size disks for multi device LVM tests (#441)
- fix: Fix expected error message in tests_misc.yml (#446)

### Other Changes

- ci: use tox-lsr 3.3.0 which uses ansible-test 2.17 (#442)
- ci: tox-lsr 3.4.0 - fix py27 tests; move other checks to py310 (#445)
- test: lsblk can return LOG_SEC or LOG-SEC (#447)
- ci: Add supported_ansible_also to .ansible-lint (#448)
- test: lvm pool members test fix (#449)

[1.16.5] - 2024-04-22
--------------------

Expand Down
Loading