From 7fc8d76fcc85980b29f708ac36199aa4cefda747 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Tue, 12 Dec 2023 09:19:25 -0700 Subject: [PATCH] docs(changelog): version 1.15.0 [citest skip] Update changelog and .README.html for version 1.15.0 Signed-off-by: Rich Megginson --- .README.html | 8 ++++++++ CHANGELOG.md | 12 ++++++++++++ 2 files changed, 20 insertions(+) diff --git a/.README.html b/.README.html index acbf5764..988035ea 100644 --- a/.README.html +++ b/.README.html @@ -206,6 +206,14 @@

storage_pools

  • type

    This specifies the type of pool to manage. Valid values for type: lvm.

  • +
  • shared

    +

    If set to true, the role creates or manages a shared +volume group. Requires lvmlockd and dlm services configured and +running.

    +

    Default: false

    +

    WARNING: Modifying the shared value on +an existing pool is a destructive operation. The pool itself will be +removed as part of the process.

  • disks

    A list which specifies the set of disks to use as backing storage for the pool. Supported identifiers include: device node (like diff --git a/CHANGELOG.md b/CHANGELOG.md index c7a18dcb..67b64744 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +[1.15.0] - 2023-12-12 +-------------------- + +### New Features + +- feat: Added support for creating shared LVM setups (#388) + +### Other Changes + +- ci: Bump actions/github-script from 6 to 7 (#405) +- refactor: get_ostree_data.sh use env shebang - remove from .sanity* (#406) + [1.14.1] - 2023-11-29 --------------------