From 73d573b9159ef95fcb576259cb9dce8debcbc23d Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 23 Nov 2020 12:15:25 +0100 Subject: [PATCH] Add information on hetzner module migration. (#1344) --- changelogs/fragments/hetzner-migration.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelogs/fragments/hetzner-migration.yml diff --git a/changelogs/fragments/hetzner-migration.yml b/changelogs/fragments/hetzner-migration.yml new file mode 100644 index 0000000000..06aa6bd8c4 --- /dev/null +++ b/changelogs/fragments/hetzner-migration.yml @@ -0,0 +1,10 @@ +major_changes: +- > + For community.general 2.0.0, the Hetzner Robot modules will be moved to the `community.hrobot `_ collection. + A redirection will be inserted so that users using ansible-base 2.10 or newer do not have to change anything. + + If you use Ansible 2.9 and explicitly use Hetzner Robot modules from this collection, you will need to adjust your playbooks and roles to use FQCNs starting with ``community.hrobot.`` instead of ``community.general.hetzner_``, + for example replace ``community.general.hetzner_firewall_info`` in a task by ``community.hrobot.firewall_info``. + + If you use ansible-base and installed ``community.general`` manually and rely on the Hetzner Robot modules, you have to make sure to install the ``community.hrobot`` collection as well. + If you are using FQCNs, i.e. ``community.general.hetzner_failover_ip`` instead of ``hetzner_failover_ip``, it will continue working, but we still recommend to adjust the FQCNs as well.