8.4 KiB
Ansible 2.4 Porting Guide
This section discusses the behavioral changes between Ansible 2.3 and Ansible 2.4.
It is intended to assist in updating your playbooks, plugins and other parts of your Ansible infrastructure so they will work with this version of Ansible.
We suggest you read this page along with Ansible Changelog to understand what updates you may need to make.
This document is part of a collection on porting. The complete list
of porting guides can be found at porting guides <porting_guides>
.
Topics
Python version
Ansible will not support Python 2.4 nor 2.5 on the target hosts anymore. Going forward, Python 2.6+ will be required on targets, as already is the case on the controller.
Inventory
Inventory has been refactored to be implemented via plugins and now allows for multiple sources. This change is mostly transparent to users.
One exception is the inventory_dir
, which is now a host
variable; previously it could only have one value so it was set
globally. This means you cannot use it early in plays anymore to
determine hosts:
or similar keywords.
The inventory_file
remains unchaged, as it was always
host specific.
Deprecated
Specifying Inventory sources
Use of --inventory-file
on the command line is now
deprecated. Use --inventory
or -i
. The
associated ini configuration key, hostfile
, and environment
variable, ANSIBLE_HOSTS
, are also deprecated. Replace them
with the configuration key inventory
and environment
variable :envvar: ANSIBLE_INVENTORY.
Use of multiple tags
Specifying --tags
(or --skip-tags
) multiple
times on the command line currently leads to the last one overriding all
the previous ones. This behavior is deprecated. In the future, if you
specify --tags multiple times the tags will be merged together. From now
on, using --tags
multiple times on one command line will
emit a deprecation warning. Setting the
merge_multiple_cli_tags
option to True in the
ansible.cfg
file will enable the new behavior.
In 2.4, the default has change to merge the tags. You can enable the old overwriting behavior via the config option.
In 2.5, multiple --tags
options will be merged with no
way to go back to the old behavior.
Other caveats
No major changes in this version.
Modules
Major changes in popular modules are detailed here
- The
win_shell <win_shell>
andwin_command <win_command>
modules now properly preserve quoted arguments in the command-line. Tasks that attempted to work around the issue by adding extra quotes/escaping may need to be reworked to remove the superfluous escaping. See Issue 23019 for additional detail.
Modules removed
The following modules no longer exist:
- None
Deprecation notices
The following modules will be removed in Ansible 2.8. Please update update your playbooks accordingly.
azure <azure>
, useazure_rm_virtualmachine <azure_rm_virtualmachine>
, which uses the new Resource Manager SDK.win_msi <win_msi>
, usewin_package <win_package>
instead
Noteworthy module changes
- The
win_get_url <win_get_url>
module has the dictionarywin_get_url
in its results deprecated, its content is now also available directly in the resulting output, like other modules. This dictionary will be removed in Ansible 2.8. - The
win_unzip <win_unzip>
module no longer includes the dictionarywin_unzip
in its results; the contents are now included directly in the resulting output, like other modules. - The
win_package <win_package>
module return valuesexit_code
andrestart_required
have been deprecated in favour ofrc
andreboot_required
respectively. The deprecated return values will be removed in Ansible 2.6.
Plugins
A new way to configure and document plugins has been introduced. This does not require changes to existing setups but developers should start adapting to the new infrastructure now. More details will be available in the developer documentation for each plugin type.
Vars plugin changes
There have been many changes to the implementation of vars plugins, but both users and developers should not need to change anything to keep current setups working. Developers should consider changing their plugins take advantage of new features.
The most notable difference to users is that vars plugins now get invoked on demand instead of at inventory build time. This should make them more efficient for large inventories, especially when using a subset of the hosts.
Note
This also creates a difference with group/host_vars when using them adjacent to playbooks. Before, the 'first' playbook loaded determined the variables; now the 'current' playbook does. We are looking to fix this soon, since 'all playbooks' in the path should be considered for variable loading.
Inventory plugins
Developers should start migrating from hardcoded inventory with
dynamic inventory scripts to the new Inventory Plugins. The scripts will
still work via the script
inventory plugin but Ansible
development efforts will now concentrate on writing plugins rather than
enhancing existing scripts.
Both users and developers should look into the new plugins because they are intended to alleviate the need for many of the hacks and workarounds found in the dynamic inventory scripts.
Callback plugins
Users:
- Callbacks are now using the new configuration system. Users should not need to change anything as the old system still works, but you might see a deprecation notice if any callbacks used are not inheriting from the built in classes. Developers need to update them as stated below.
Developers:
- If your callback does not inherit from
CallbackBase
(directly or indirectly via another callback), it will still work, but issue a deprecation notice. To avoid this and ensure it works in the future change it to inherit fromcallbackBase
so it has the new options handling methods and properties. You can also implement the new options handling methods and properties but that won't automatically inherit changes added in the future. You can look atCallbackBase
itself and/orAnsiblePlugin
for details. - Any callbacks inheriting from other callbacks might need to also be updated to contain the same documented options as the parent or the options won't be available. This is noted in the developer guide.
Networking
There have been a number of changes to how Networking Modules operate.
Playbooks should still use connection: local
.
Persistent Connection
The configuration variables connection_retries
and
connect_interval
which were added in Ansible 2.3 are now
deprecated. For Ansible 2.4 and later use
connection_retry_timeout
.
To control timeouts use command_timeout
rather than the
previous top level timeout
variable under
[default]
See Ansible Network debug guide <network_debug_troubleshooting>
for more information.
Configuration
The configuration system has had some major changes. Users should be unaffected except for the following:
- All relative paths defined are relative to the ansible.cfg file itself. Previously they varied by setting. The new behavior should be more predictable.
- A new macro
{{CWD}}
is available for paths, which will make paths relative to the 'current working directory', this is unsafe but some users really want to rely on this behaviour.
Developers that were working directly with the previous API should
revisit their usage as some methods (for example,
get_config
) were kept for backwards compatibility but will
warn users that the function has been deprecated.
The new configuration has been designed to minimize the need for code changes in core for new plugins. The plugins just need to document their settings and the configuration system will use the documentation to provide what they need. This is still a work in progress; currently only 'callback' and 'connection' plugins support this. More details will be added to the specific plugin developer guides.