ansible配置多个inventory
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible配置多个inventory相关的知识,希望对你有一定的参考价值。
在工作中的机器往往有上百上千台,在这些机器中功能往往是各不同相的,把这些机器都放在/etc/ansible/hosts中时间久了往往会混乱;此时可以把不同分类的机器放在不同的inventory中,达到清晰管理的目的;
配置文件:/etc/ansible/ansible.cfg
配置参数:inventory = 文件
相关inventory文件都放在/etc/ansible/inventory目录下
配置实例:
[[email protected] inventory]# grep "^inventory" /etc/ansible/ansible.cfg inventory = /etc/ansible/inventory/all inventory = /etc/ansible/inventory/mytest inventory = /etc/ansible/inventory/product inventory = /etc/ansible/inventory/oms inventory = /etc/ansible/inventory/backserver inventory = /etc/ansible/inventory/oms_backup [[email protected] inventory]# ls /etc/ansible/inventory/ all backserver mytest oms oms_backup product
以上是关于ansible配置多个inventory的主要内容,如果未能解决你的问题,请参考以下文章