From 7e4c6e541f2ecfc50128b3aed5080d7d6a1b1d56 Mon Sep 17 00:00:00 2001 From: Sergei Petrosian <30409084+spetrosi@users.noreply.github.com> Date: Fri, 8 Sep 2023 15:15:28 +0200 Subject: [PATCH] docs(changelog): version 1.3.7 [citest skip] (#170) Update changelog and .README.html for version 1.3.7 Signed-off-by: Sergei Petrosian --- .README.html | 219 +++++++++++++++++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 22 ++++++ 2 files changed, 241 insertions(+) create mode 100644 .README.html diff --git a/.README.html b/.README.html new file mode 100644 index 0000000..22ed1d2 --- /dev/null +++ b/.README.html @@ -0,0 +1,219 @@ + + + + + + + + Ansible Role: Kernel Crash Dump + + + + + + +
+
+

Ansible Role: Kernel Crash Dump

+
+
+ +
+

An ansible role which configures kdump.

+

Warning

+

The role replaces the kdump configuration of the managed host. +Previous settings will be lost, even if they are not specified in the +role variables. Currently, this includes replacing at least the +following configuration file:

+ +

Role Variables

+

kdump_target: Can be specified to write vmcore to a +location that is not in the root file system. If type is +raw or a filesystem type, location points to a partition +(by device node name, label, or uuid). For example:

+
kdump_target:
+  type: raw
+  location: /dev/sda1
+

or for an ext4 filesystem:

+
kdump_target:
+  type: ext4
+  location: "12e3e25f-534e-4007-a40c-e7e080a933ad"
+

If type is ssh, location points to a +server: example:

+
  type: ssh
+  location: user@example.com
+

Similarly for nfs, location points to an +nfs server:

+
  type: nfs
+  location: nfs.example.com
+

Only the ssh type is considered stable, support for the +other types is experimental.

+

kdump_path: The path to which vmcore will be +written. If kdump_target is not null, path is relative to +that dump target. Otherwise, it must be an absolute path in the root +file system.

+

kdump_core_collector: A command to copy the vmcore. +If null, uses makedumpfile with options depending on the +kdump_target.type.

+

kdump_system_action: The action that is performed +when dumping the core file fails. Can be reboot, +halt, poweroff, or shell.

+

kdump_auto_reset_crashkernel: Whether to reset +kernel crashkernel to new default value or not when kexec-tools updates +the default crashkernel value and existing kernels using the old default +kernel crashkernel value.

+

kdump_dracut_args: Pass extra dracut options when +rebuilding kdump initrd.

+

kdump_reboot_ok: If you run the role on a managed +node that does not have memory reserved for crash kernel, i.e. the file +/sys/kernel/kexec_crash_size contains 0, it +might be required to reboot the managed node to configure kdump.

+

By default, the role does not reboot the managed node. If a managed +node requires reboot, the role sets the +kdump_reboot_required fact and fails, so that the user can +reboot the managed node when needed. If you want the role to reboot the +system if required, set this variable to true. You do not +need to re-execute the role after boot.

+

Default: false

+

Ansible Facts Returned by +the Role

+

kdump_reboot_required: The role sets this fact if +the managed node requires reboot to complete kdump configuration. +Re-execute the role after boot to ensure that kdump is working.

+

License

+

MIT

+
+ + diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cfbf78..69208de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ Changelog ========= +[1.3.7] - 2023-09-07 +-------------------- + +### Other Changes + +- docs: Make badges consistent, run markdownlint on all .md files (#167) + + - Consistently generate badges for GH workflows in README RHELPLAN-146921 + - Run markdownlint on all .md files + - Add custom-woke-action if not used already + - Rename woke action to Woke for a pretty badge + + Signed-off-by: Sergei Petrosian + +- ci: Remove badges from README.md prior to converting to HTML (#168) + + - Remove thematic break after badges + - Remove badges from README.md prior to converting to HTML + + Signed-off-by: Sergei Petrosian + + [1.3.6] - 2023-08-17 --------------------