承接上文 Python+Mongodb 提供服务器信息,基本实现根据项目标签过滤主机,本篇文章则聊聊如何对接 Ansible

Ansible动态主机列表

动态主机 Demo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python2

'''
Example custom dynamic inventory script for Ansible, in Python.
'''

import os
import sys
import argparse

try:
import json
except ImportError:
import simplejson as json

class ExampleInventory(object):

def __init__(self):
self.inventory = {}
self.read_cli_args()

# Called with `--list`.
if self.args.list:
self.inventory = self.example_inventory()
# Called with `--host [hostname]`.
elif self.args.host:
# Not implemented, since we return _meta info `--list`.
self.inventory = self.empty_inventory()
# If no groups or vars are present, return empty inventory.
else:
self.inventory = self.empty_inventory()

print json.dumps(self.inventory);

# Example inventory for testing.
def example_inventory(self):
return {
'groupname1': {
'hosts': ['192.168.77.129', '192.168.77.130'],
'vars': {
'ansible_ssh_user': 'root',
'ansible_ssh_pass': '123456',
'example_variable': 'value'
}
},
'_meta': {
'hostvars': {
'192.168.77.129': {
'host_specific_var': 'foo'
},
'192.168.77.130': {
'host_specific_var': 'bar'
}
}
}
}

# Empty inventory for testing.
def empty_inventory(self):
return {'_meta': {'hostvars': {}}}

# Read the command line args passed to the script.
def read_cli_args(self):
parser = argparse.ArgumentParser()
parser.add_argument('--list', action = 'store_true')
parser.add_argument('--host', action = 'store')
self.args = parser.parse_args()

# Get the inventory.
ExampleInventory()

测试主机信息

1
2
3
4
5
6
7
8
# 将上述代码保存为myinventory.py,且赋予执行权限
[root@node1 ansible]# chmod +x myinventory.py
[root@node1 ansible]# ansible -i myinventory.py groupname1 --list-host
hosts (2):
192.168.77.129
192.168.77.130
[root@node1 ansible]#