Python中的 ansible 动态Inventory 脚本
程序员文章站
2022-10-12 15:03:08
1.ansible inventory 介绍;
ansible inventory 是包含静态 inventory 和动态 inventory 两部分的,静态 inven...
1.ansible inventory 介绍;
ansible inventory 是包含静态 inventory 和动态 inventory 两部分的,静态 inventory 指的是在文件中指定的主机和组,动态 inventory 指通过外部脚本获取主机列表,并按照 ansible 所要求的格式返回给 ansilbe 命令的。这部分一般会结合 cmdb 资管系统、云计算平台等获取主机信息。由于主机资源一般会动态的进行增减,而这些系统一般会智能更新。我们可以通过这些工具提供的 api 或者接入库查询等方式返回主机列表。
2.mysql数据结构如下;
3.本章节演示从mysql数据作为数据源生成动态ansible 主机;
#!/usr/bin/env python36 def commmysql(): import mysql.connector import json mydb = mysql.connector.connect( host="192.168.1.23", # 数据库主机地址 user="root", # 数据库用户名 passwd="123456", database="test" ) mycursor = mydb.cursor() mycursor.execute(" select host,`group` from ansible_hosts;") #mycursor. myresult = mycursor.fetchall() data = dict() #####查询出group分组并去重############# groups = list(set([i[1].decode() for i in myresult])) data["all"] = {"children": groups} data["_meta"] = {"hostvars": {}} for group in groups: data[group] = dict() data[group]["hosts"] = list() for x in myresult: if x[1].decode("utf-8") == group: data[group]["hosts"].append(x[0].decode("utf-8")) return json.dumps(data,indent=3) def main(): from optparse import optionparser parse = optionparser() parse.add_option("-l", "--list", action="store_true", dest="list", default=false) (option, arges) = parse.parse_args() if option.list: print(commmysql()) else: print("abc") if __name__ == '__main__': from optparse import optionparser parse = optionparser() parse.add_option("-l", "--list", action="store_true", dest="list", default=false) (option, arges) = parse.parse_args() if option.list: print(commmysql()) else: print("test")
4.数据格式结果如下;
5.ansible 执行动态主机如下;
总结
以上所述是小编给大家介绍的python中的 ansible 动态inventory 脚本,希望对大家有所帮助
推荐阅读
-
python 实现在tkinter中动态显示label图片的方法
-
Python中在脚本中引用其他文件函数的实现方法
-
Python中的 ansible 动态Inventory 脚本
-
ansible动态Inventory主机清单配置遇到的坑
-
python3连接mysql获取ansible动态inventory脚本
-
Java程序中实现调用Python脚本的方法详解
-
详解Python中的动态属性和特性
-
shell脚本中执行python脚本并接收其返回值的例子
-
python 实现在tkinter中动态显示label图片的方法
-
c#调用python脚本实现排序(适用于python脚本中不包含第三方模块的情况)