From 1f9969612fbe6fbba3a71a9c1f0c62bbda8bcbba Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 9 Nov 2023 16:55:15 -0700 Subject: [PATCH] docs(changelog): version 1.14.0 [citest skip] Update changelog and .README.html for version 1.14.0 Signed-off-by: Rich Megginson --- .README.html | 7 +++++-- CHANGELOG.md | 7 +++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.README.html b/.README.html index b1130943..acbf5764 100644 --- a/.README.html +++ b/.README.html @@ -280,8 +280,11 @@

storage_volumes

  • fs_type

    This indicates the desired file system type to use, e.g.: "xfs", "ext4", "swap". The default is determined according to the OS and -release (currently xfs for all the supported -systems).

  • +release (currently xfs for all the supported systems). Use +"unformatted" if you do not want file system to be present. +WARNING: Using "unformatted" file system type on an +existing filesystem is a destructive operation and will destroy all data +on the volume.

  • fs_label

    The fs_label is a string to be used for a file system label.

  • diff --git a/CHANGELOG.md b/CHANGELOG.md index c5b21dc6..cc6c0bb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +[1.14.0] - 2023-11-09 +-------------------- + +### New Features + +- feat: Support for creating volumes without a FS (#400) + [1.13.0] - 2023-11-06 --------------------