From ddb7367a52ec59d5b80ded034491a2a8668f58e2 Mon Sep 17 00:00:00 2001 From: Ygal Blum Date: Thu, 14 Dec 2023 15:26:48 +0200 Subject: [PATCH] Update and document Ansible requirements (#39) * Update required Ansible to 2.14 and above Signed-off-by: Ygal Blum * Add a Requirements section to the collection README Signed-off-by: Ygal Blum --------- Signed-off-by: Ygal Blum --- README.md | 14 ++++++++++++++ meta/runtime.yml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 64d24d0..895c8de 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,20 @@ A reliable snapshot/rollback capability is a key feature required to enable the success of RHEL In-place Upgrade automation solutions. Without it, users will be wary of using the solution because of the potential risk that their applications may not function properly after the OS upgrade. Including automation so that snapshot creation happens right before the OS upgrade reduces this risk. If there are any application issues uncovered after the OS upgrade, a rollback playbook can be executed to instantly revert the environment back to the original state as it was before the upgrade. Application teams will no longer have an excuse not to use in-place upgrades to bring their RHEL estate into compliance. +## Requirements + +### Ansible Version + +This collection requires ansible from version `2.14.0` and above + +### Collections + +This collection depends on the following collections + +```yaml +- "community.general": "*" +``` + ## Roles These are the roles included in the collection. Follow the links below to see the detailed documentation and example playbooks for each role. diff --git a/meta/runtime.yml b/meta/runtime.yml index 9090205..be99ccf 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,2 +1,2 @@ --- -requires_ansible: '>=2.11.0' +requires_ansible: '>=2.14.0'