Skip to content

Commit

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

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm committed Feb 20, 2024
1 parent 437b4db commit f41bd92
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ <h1 class="toc-title">Contents</h1>
id="toc-snapshot_lvm_mount_origin">snapshot_lvm_mount_origin</a></li>
<li><a href="#snapshot_lvm_unmount_all"
id="toc-snapshot_lvm_unmount_all">snapshot_lvm_unmount_all</a></li>
<li><a href="#snapshot_lvm_vg_include"
id="toc-snapshot_lvm_vg_include">snapshot_lvm_vg_include</a></li>
<li><a href="#variables-exported-by-the-role"
id="toc-variables-exported-by-the-role">Variables Exported by the
Role</a>
Expand Down Expand Up @@ -204,7 +206,7 @@ <h2 id="snapshot_lvm_action">snapshot_lvm_action</h2>
conflicts and there is sufficient space to take the snapshots</p></li>
<li><p><code>remove</code>: Remove snapshots that conform to the
specified prefix and pattern</p></li>
<li><p><code>revert</code>: Revert to snapshots that are specifed by
<li><p><code>revert</code>: Revert to snapshots that are specified by
either the pattern or set. If either the source LV or snapshot are open,
the merge is deferred until the next time the server reboots and the
source logical volume is activated.</p></li>
Expand Down Expand Up @@ -274,7 +276,6 @@ <h2 id="snapshot_lvm_set">snapshot_lvm_set</h2>
<span id="cb3-27"><a href="#cb3-27" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">mount_origin</span><span class="kw">:</span><span class="at"> </span><span class="ch">true</span></span></code></pre></div>
<p>The mount_origin flag defaults to false, so it is not necessary when
the user is mounting the snapshot rather than the origin.</p>
<p>If before running the role, with :</p>
<h2 id="snapshot_lvm_snapset_name">snapshot_lvm_snapset_name</h2>
<p>This variable is required. snapshot_lvm_snapset_name is a string that
will be appended to the name of the LV when the snapshot set is created.
Expand Down Expand Up @@ -364,8 +365,16 @@ <h2 id="snapshot_lvm_mount_origin">snapshot_lvm_mount_origin</h2>
parameter.</p>
<h2 id="snapshot_lvm_unmount_all">snapshot_lvm_unmount_all</h2>
<p>If set to true, unmount all mountpoint for the resulting blockdevice.
Linux allows filesytems to be mounted in multiple locations. Setting
Linux allows filesystems to be mounted in multiple locations. Setting
this flag will unmount all locations.</p>
<h2 id="snapshot_lvm_vg_include">snapshot_lvm_vg_include</h2>
<p>When using <code>snapshot_lvm_all_vgs</code>, there may be some
subset of all volume groups that you want to use. Set
<code>snapshot_lvm_vg_include</code> to a regex pattern that matches the
names of the volume groups you want to use and the rest will be
excluded. For example, <code>snapshot_lvm_vg_include: "^sql_db_"</code>
will only operate on volume groups whose names start with
<code>sql_db_</code>. This uses the Python <code>re.search</code>.</p>
<h2 id="variables-exported-by-the-role">Variables Exported by the
Role</h2>
<h3 id="snapshot_facts">snapshot_facts</h3>
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Changelog
=========

[1.3.0] - 2024-02-20
--------------------

### New Features

- feat: add support for snapshot_lvm_vg_include (#39)

### Bug Fixes

- fix: ostree test failures - use /var/mnt (#37)
- fix: ensure role is idempotent and supports check mode (#41)

### Other Changes

- refactor: use iterator function for listing vgs, lvs (#36)
- refactor: centralize test setup/cleanup - add cleanup debugging (#38)

[1.2.0] - 2024-02-13
--------------------

Expand Down

0 comments on commit f41bd92

Please sign in to comment.