I manage an Ansible Collection on Ansible Galaxy with multiple roles in it and want to mark some of those roles as deprecated. How can I do this?
In the Ansible documentation there is only a solution for modules.
Can this be adopted to the roles?
I manage an Ansible Collection on Ansible Galaxy with multiple roles in it and want to mark some of those roles as deprecated. How can I do this?
In the Ansible documentation there is only a solution for modules.
Can this be adopted to the roles?
For Ansible Galaxy as provider of the content there is an option available to Deprecate Content
You can deprecate Collections and Role repositories that you own from the ‘My Content’ page. ...
Just follow the documentation.
Since Roles are for
... group your content in roles, you can easily reuse them and share them with other users.
and just source code, scripts, YAML files, there is nothing like a deprecation warning message for the content itself.
To work around one could implement pre_tasks
together with specific messages and behavior. In example like
pre_tasks:
- name: Check Ansible User
fail:
msg: Do not execute under root!
when: ansible_user == 'root'
Together with Conditionals it can be used to fail
with Custom Message, assert
that given expressions are true
or in order to print WARNING
s from playbook.
Since there is no module to print WARNING
messages out-of-box, it needs to be implemented via a Filter Plugin which can be easily Developed and as shown within the given link or as an own Custom Module warn
. One may take note that such approach will create further dependencies for a Role and which would need to be resolved before too.
A workaround for that could be simply
pre_tasks:
- name: DEPRECATION WARNING
fail:
msg: Use v2 instead!
when: VERSION == 'v1'
ignore_errors: true
Other Q&A
There is no such framework AFAIK. But, you can easily create one on your own. Use the configuration parameter DEPRECATION_WARNINGS. For example, declare defaults
, create a task to display the deprecation warning
, and include it conditionally
When you run the role
you'll see the deprecation warning
You can disable the deprecation warnings
Declare an empty dictionary if you don't want a role to display a deprecation warning
or don't include the task deprecation.yml.