ansible动态Inventory主机清单配置遇到的坑


Posted in Python onJanuary 19, 2020

坑1 : 动态主机清单配置,需要按照ansible的要求的格式返回给ansible命令的

源代码如下:

但是在ansible-playbook中使用动态主机配置文件的时候,发生了错误!!!

ansible动态Inventory主机清单配置遇到的坑

提示没有匹配的主机信息

分析: 数据库已配置好,python脚本也能输出,问题在于输出的结果不是ansible想要的格式作为ansible的命令输入,因此排查如下

下面看下我的动态inventory输出的格式吧

[root@ansible fang]# python ansible_inventory.py --list
{
  "all": [
    "192.168.10.104"
  ]
}
[root@ansible fang]# python ansible_inventory.py --host 192.168.10.104
{
  "ansible_ssh_host": "192.168.10.104",
  "ansible_ssh_user": "root",
  "hostname": "clone-node1"
}

在网上找的方法,虽然实现了—list  --host的输出,但是格式不满足ansible格式输出的要求,ansible需求的格式有哪些呢,请看解决办法中….

输出结果:

这是出错的信息,提示还是找不到主机的信息

[root@ansible fang]#
ansible-playbook -i ansible_inventory.py bb.yml运行出错

解决方法:

先说个知识点(ansible所要求的格式):

动态 Inventory 指通过外部脚本获取主机列表,并按照 ansible 所要求的格式返回给 ansilbe 命令的

因此,需要清楚ansible需要那种inventory的格式呢

必须输出为 JSON 格式

同时必须支持两个参数:--list 和 --host <hostname>。

--list:用于返回所有的主机组信息,每个组所包含的主机列表 hosts、所含子组列表 children、主机组变量列表 vars 都应该是字典形式的,_meta 用来存放主机变量。

正确的输出格式是什么样子的呢,请看下面:

以下的是正确的动态inventory的输出格式,其中就是ansible的第三点要求 每个组所包含的主机列表 hosts、所含子组列表 children、主机组变量列表 vars 都应该是字典形式的,_meta 用来存放主机变量。

[root@ansible fang]# vim tt.py
[root@ansible fang]# python tt.py
{
  "group1": {
    "hosts": [
      "192.168.10.104"
    ]
  },
  "group2": {
    "hosts": [
      "192.168.10.103",
      "192.168.13.5"
    ],
    "vars": {
      "ansible_ssh_port": 22,
      "ansible_connection": "ssh"
    }
  }
}
[root@ansible fang]#

按照以上的格式,来编写我们的输出吧,

SQL表格内容如下:

ansible动态Inventory主机清单配置遇到的坑

我想要输出的json格式是这样的

{组名:{
hosts:[‘ip1','ip2'],
vars:{
  “ansible_ssh_port”:22,
“ansilble_connection”:'ssh'
……….
}
}
}

脚本代码列出来了如下:

#_*_coding:utf-8_*_
__author__ = 'fang'
import pymysql
import json
import argparse
import sys
def execude_sql(table): #定义一个执行SQL的函数
  sql = 'select * from {0};'.format(table)
  cur.execute(sql) #args即要传入SQL的参数
  sys_result = cur.fetchall()
  #index = cur.description
  hostlist = {}#放入主机清单的信息
  for i in sys_result:
    hostlist[i[2]] = []
  for i in sys_result:
    hostlist[i[2]].append([i[1], i[5], i[6]])
  host_lists = dict()
  for i in hostlist.iteritems():
    dict_item = dict()
    for index in i[1]:
      dict_item[index[0]] = {'ansible_connection': index[1], 'ansible_ssh_port': index[2]}
    host_lists[i[0]] = dict_item
  # print json.dumps(host_lists, indent=4)
return host_lists
def group(data):
  '''
  all hostip
  :param data:
  :return:
  '''
  count_ip = dict()
  count_ip['all'] = {}
  count_ip['all']['hosts'] = []
  index = []
  for i in data:
    index.extend(data[i].keys())
  count_ip['all']['hosts'].extend(list(set(index)))
  print json.dumps(count_ip, indent=4)
def host(data, ip):
  dict_host = {}
  for i in data:
    if data[i].keys() == [ip]:
      dict_host[i] = {}
      dict_host[i]['hosts'] = [ip]
      dict_host[i]['vars'] = data[i][ip]
      print json.dumps(dict_host, indent=4)
      break
if __name__ == "__main__":
  global file, con, cur #文件对象,连接和游标对象
  #连接数据库
  con = pymysql.connect('127.0.0.1', 'root', '', 'ansible', charset='utf8') # 连接数据库
  cur = con.cursor() # 定义一个游标 
  data = execude_sql('hosts_table')
# parser = argparse.ArgumentParser()#定义参数解析器
#获取参数的方法1:
#以下是参数解析器添加参数格式,有—list和—host dest表示都可以通过args.list或者args.host来获取到可变参数的值,action中store_true表存储的是布尔值,当没有—list的时候默认false,当有—list的时候,但是没有值,默认则为true,help表示帮助时候提示的信息,argparse很好用,在这里恰当好处
  # parser.add_argument('--list',action='store_true',dest='list',help='get all hosts')
  # parser.add_argument('--host',action='store',dest='host',help='get sigle host')
  # args = parser.parse_args()
  # if args.list:
  #   group(data)
  # if args.host:
  #   host(data, args.host)
#获取参数的方法2:
   if len(sys.argv) == 2 and (sys.argv[1] == '--list'):
      group(data)
   elif len(sys.argv) == 3 and (sys.argv[1] == '--host'):
       host(data, sys.argv[2])
   else:
     print "Usage %s --list or --host <hostname>"% sys.argv[0]
     sys.exit(1)

坑 2: 动态inventory脚本要制定python的解释器,否则无法执行

问题分析:

Ansible-playbook ?I ansbile_inventory.py bb.yml执行

提示:无法识别host,还是出现了问题

对比ansible要求的格式,没有差别,最后进行代码的比对,问题出现在脚本没有制定Python解释器,导致出现的问题

解决办法:

添加python解释器的路径

ansible动态Inventory主机清单配置遇到的坑

执行结果:

Yml文件

ansible动态Inventory主机清单配置遇到的坑

命令执行结果:

[root@ansible fang]# ansible-playbook -i ansible_inventory.py bb.yml
PLAY [192.168.10.104] *********************************************************************
TASK [debug] *********************************************************************
ok: [192.168.10.104] => {
  "msg": "this is test block"
}
TASK [file] *********************************************************************
ok: [192.168.10.104]
TASK [debug] *********************************************************************
ok: [192.168.10.104] => {
  "msg": "this is always"
}
PLAY RECAP *********************************************************************
192.168.10.104       : ok=3  changed=0  unreachable=0  failed=0 
[root@ansible fang]# python ansible_inventory.py --host 192.168.10.104
{
  "xiaoming": {
    "hosts": [
      "192.168.10.104"
    ],
    "vars": {
      "ansible_ssh_port": 22,
      "ansible_connection": "ssh"
    }
  }
}

另外注意点:  --list    --host 正是通过yml中的hosts指定的内容,即为脚本中命令行的参数的内容

 总结

以上所述是小编给大家介绍的ansible动态Inventory主机清单配置遇到的坑,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

Python 相关文章推荐
Python中__name__的使用实例
Apr 14 Python
以windows service方式运行Python程序的方法
Jun 03 Python
Python设计模式之命令模式简单示例
Jan 10 Python
Python实现基于POS算法的区块链
Aug 07 Python
Python Series从0开始索引的方法
Nov 06 Python
python对csv文件追加写入列的方法
Aug 01 Python
Python使用字典实现的简单记事本功能示例
Aug 15 Python
pycharm 2019 最新激活方式(pycharm破解、激活)
Sep 22 Python
详解Python修复遥感影像条带的两种方式
Feb 23 Python
python logging 重复写日志问题解决办法详解
Aug 04 Python
Python开发.exe小工具的详细步骤
Jan 27 Python
python向xls写入数据(包括合并,边框,对齐,列宽)
Feb 02 Python
python实现五子棋游戏(pygame版)
Jan 19 #Python
Python turtle画图库&amp;&amp;画姓名实例
Jan 19 #Python
python3连接mysql获取ansible动态inventory脚本
Jan 19 #Python
基于Pycharm加载多个项目过程图解
Jan 19 #Python
使用Python脚本从文件读取数据代码实例
Jan 19 #Python
Python安装tar.gz格式文件方法详解
Jan 19 #Python
Python : turtle色彩控制实例详解
Jan 19 #Python
You might like
PHP定时更新程序设计思路分享
2014/06/10 PHP
PHP大文件分块上传功能实例详解
2019/07/22 PHP
js新闻滚动 js如何实现新闻滚动效果
2013/01/07 Javascript
firefox下jquery ajax返回object XMLDocument处理方法
2014/01/26 Javascript
js实现仿Discuz文本框弹出层效果
2015/08/13 Javascript
初步了解javascript面向对象
2015/11/09 Javascript
JavaScript 不支持 indexof 该如何解决
2016/03/30 Javascript
基于Bootstrap3表格插件和分页插件实例详解
2016/05/17 Javascript
JavaScript遍历Json串浏览器输出的结果不统一问题
2016/11/03 Javascript
jQuery中 bind的用法简单介绍
2017/02/13 Javascript
详解react-native-fs插件的使用以及遇到的坑
2017/09/12 Javascript
vue实现一个炫酷的日历组件
2018/10/08 Javascript
微信小程序车牌号码模拟键盘输入功能的实现代码
2018/11/11 Javascript
angular 服务随记小结
2019/05/06 Javascript
小程序实现搜索框
2020/06/19 Javascript
关于JSON解析的实现过程解析
2019/10/08 Javascript
js实现小时钟效果
2020/03/25 Javascript
[04:11]DOTA2上海特级锦标赛主赛事首日TOP10
2016/03/03 DOTA
windows下安装python paramiko模块的代码
2013/02/10 Python
SublimeText 2编译python出错的解决方法(The system cannot find the file specified)
2013/11/27 Python
Python XML RPC服务器端和客户端实例
2014/11/22 Python
Python导出数据到Excel可读取的CSV文件的方法
2015/05/12 Python
Python装饰器使用实例:验证参数合法性
2015/06/24 Python
Python制作词云的方法
2018/01/03 Python
解决Mac安装scrapy失败的问题
2018/06/13 Python
浅析PEP570新语法: 只接受位置参数
2019/10/15 Python
Pytorch 中的optimizer使用说明
2021/03/03 Python
CSS3字体效果的设置方法小结
2016/06/13 HTML / CSS
澳大利亚领先的在线美容商店:Facial Co
2017/10/22 全球购物
应届生骨科医生求职信
2013/10/31 职场文书
《油菜花开了》教学反思
2014/02/22 职场文书
反腐倡廉警示教育活动总结
2014/05/05 职场文书
党员目标管理责任书
2014/07/25 职场文书
2014年行政执法工作总结
2014/12/11 职场文书
评先进个人材料
2014/12/29 职场文书
合同范本之电脑出租
2019/08/13 职场文书