From 9ab56c66c0afe59203a925129583d57dc9203784 Mon Sep 17 00:00:00 2001 From: Petr Stodulka Date: Tue, 22 Aug 2023 19:52:53 +0200 Subject: [PATCH] Doc: update deprecations and envars for leapp-repository v0.19.0 See related leapp-repository PRs: * https://github.com/oamg/leapp-repository/pull/1093 * https://github.com/oamg/leapp-repository/pull/1097 * https://github.com/oamg/leapp-repository/pull/1107 --- docs/source/el7toel8/deprecation.md | 9 +++++++++ docs/source/el7toel8/envars.md | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/docs/source/el7toel8/deprecation.md b/docs/source/el7toel8/deprecation.md index dcd15224a..37bef8fcc 100644 --- a/docs/source/el7toel8/deprecation.md +++ b/docs/source/el7toel8/deprecation.md @@ -14,6 +14,15 @@ framework, see [List of deprecated functionality in leapp](../deprecation.html#l - nothing yet... +## v0.19.0 (till March 2024) + +- Models + - **InstalledTargetKernelVersion** - Deprecated as the new solution has been designed to be able to handle new changes in RHEL 9.3+ system. Use the `InstalledTargetKernelInfo` message instead. + - **GrubInfo.orig_device_name** - The `GrubInfo` message is still valid, but the `orig_device_name` field has been deprecated as multiple devices can exist on a system. Use `GrubInfo.orig_devices` instead. +- Shared libraries + - **leapp.libraries.common.config.version.is_rhel_realtime()** - The function has been deprecated as the information cannot be easily determined based on the information inside `IPUConfig`. Use data in the `KernelInfo` message instead, the field `type`. + - **leapp.libraries.common.grub.get_grub_device()** - The function has been deprecated as multiple grub devices can exists on a system. Use the `leapp.libraries.common.grub.get_grub_devices()` function instead. + ## v0.16.0 (till September 2022) - Shared libraries diff --git a/docs/source/el7toel8/envars.md b/docs/source/el7toel8/envars.md index fcc1ea37b..62e4598ff 100644 --- a/docs/source/el7toel8/envars.md +++ b/docs/source/el7toel8/envars.md @@ -188,3 +188,7 @@ on the system. Currently it works only for the most simple configurations storage is not handled anyhow during the upgrade, so it's possible that the network based storage will not be correctly initialized and usable as expected). +## LEAPP_DEVEL_KEEP_DISK_IMGS +If set to 1, leapp will skip removal of disk images created for source OVLs. +This is handy for debugging and investigations related to create containers +(the scratch one and the target userspace container).