Ansible-如何只输出错误信息

34次阅读

共计 889 个字符,预计需要花费 3 分钟才能阅读完成。

有时主机较多时,我们只想关注有问题的主机。

Ansible callback 插件中有一个 actionable,官方描述为:

actionable – shows only items that need attention

即只输出需要关注的部分。

但是 callback 插件只对 playbook 生效,如何对 Ad-hoc 起作用呢?

参考文档:https://docs.ansible.com/ansible/2.6/plugins/callback.html#managing-adhoc

可以通过修改配置文件

[defaults]
bin_ansible_callbacks=True

或者修改环境变量来实现

export ANSIBLE_LOAD_CALLBACK_PLUGINS=1

这里我们通过环境变量的方式来进行,这样比较轻量,无需修改文件

在运行 Ad-hoc 命令时,前面加上两个参数即可:

ANSIBLE_LOAD_CALLBACK_PLUGINS=1 ANSIBLE_STDOUT_CALLBACK=actionable

完整命令如下:

ANSIBLE_LOAD_CALLBACK_PLUGINS=1 ANSIBLE_STDOUT_CALLBACK=actionable ansible all -m ping

另外,ansible 环境变量汇总见页面:https://docs.ansible.com/ansible/2.6/reference_appendices/config.html#ansible-configuration-settings

参考:

  • https://stackoverflow.com/questions/40239150/how-can-i-make-ansible-show-only-errors-in-execution
  • https://docs.ansible.com/ansible/2.6/plugins/callback.html#callback-plugins

关注本公众号,后台回复「2018」即可获取传智播客 2018 最新 Python 和 Java 教程。

公众号提供 CSDN 资源免费下载服务!

正文完
 0