check_deprecated.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. """
  2. Ansible action plugin to check for usage of deprecated variables in Openshift Ansible inventory files.
  3. """
  4. from ansible.plugins.action import ActionBase
  5. # pylint: disable=too-few-public-methods
  6. class ActionModule(ActionBase):
  7. """Action plugin to execute deprecated var checks."""
  8. def run(self, tmp=None, task_vars=None):
  9. result = super(ActionModule, self).run(tmp, task_vars)
  10. # pylint: disable=line-too-long
  11. deprecation_header = "[DEPRECATION WARNING]: The following are deprecated variables and will be no longer be used in the next minor release. Please update your inventory accordingly."
  12. facts = self._task.args.get('facts', [])
  13. dep_var_list = self._task.args.get('vars', [])
  14. dep_header = self._task.args.get('header', deprecation_header)
  15. deprecation_message = "No deprecations found"
  16. is_changed = False
  17. for param in dep_var_list:
  18. if param in facts:
  19. if not is_changed:
  20. deprecation_message = dep_header
  21. is_changed = True
  22. deprecation_message = deprecation_message + "\n\t" + param
  23. result['changed'] = is_changed
  24. result['msg'] = deprecation_message
  25. return result