我想收集层次结构数据结构中的所有清单主机组变量,并将它们发送给Consul,以使其在运行时可用。
调用此方法-https://github.com/ansible/ansible/blob/devel/lib/ansible/inventory/manager.py#L160我收到错误
inventory.get_vars()
Traceback (most recent call last):
File "<input>", line 1, in <module>
inventory.get_vars()
File "<>/.virtualenvs/ansible27/lib/python2.7/site-packages/ansible/inventory/manager.py", line 160, in get_vars
return self._inventory.get_vars(args, kwargs)
AttributeError: 'InventoryData' object has no attribute 'get_vars'
我的剧本
import pprint
pp = pprint.PrettyPrinter(indent=4).pprint
from ansible.parsing.dataloader import DataLoader
from ansible.vars.manager import VariableManager
from ansible.inventory.manager import InventoryManager
loader = DataLoader()
inventory = InventoryManager(loader=loader, sources='inventories/itops-vms.yml')
variable_manager = VariableManager(loader=loader, inventory=inventory)
# shows groups as well
pp(inventory.groups)
# shows dict as well with content
pp(variable_manager.get_vars())
# creates an unhandled exception
inventory.get_vars()
如何以正确的方式做?
Python 2.7.15
ansible == 2.6.2
OS Mac High Siera
最佳答案
错误本身似乎是由错误引起的-库存对象的get_vars
方法调用未实现的get_vars
对象的InventoryData
方法。
您需要指定组,例如:
>>> inventory.groups['all'].get_vars()
{u'my_var': u'value'}
您可以使用该数据创建字典:
{g: inventory.groups[g].get_vars() for g in inventory.groups}
上面仅获取清单本身中定义的变量(这是问题所要解决的)。如果您想使用group_vars,host_vars等中的变量获取结构(如注释I want to get something similar to
$ ansible-inventory -i inventories/itops-vms.yml --graph --vars
中所述,则需要像Ansible一样从不同的来源收集数据。关于python - 如何通过Python API获取层次结构中的所有库存组变量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51791774/