真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在ansible中動(dòng)態(tài)配置Inventory-創(chuàng)新互聯(lián)

怎么在ansible中動(dòng)態(tài)配置Inventory?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

創(chuàng)新互聯(lián)公司是一家專(zhuān)業(yè)從事網(wǎng)站制作、網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)的品牌網(wǎng)絡(luò)公司。如今是成都地區(qū)具影響力的網(wǎng)站設(shè)計(jì)公司,作為專(zhuān)業(yè)的成都網(wǎng)站建設(shè)公司,創(chuàng)新互聯(lián)公司依托強(qiáng)大的技術(shù)實(shí)力、以及多年的網(wǎng)站運(yùn)營(yíng)經(jīng)驗(yàn),為您提供專(zhuān)業(yè)的成都網(wǎng)站建設(shè)、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)及網(wǎng)站設(shè)計(jì)開(kāi)發(fā)服務(wù)!

坑1 : 動(dòng)態(tài)主機(jī)清單配置,需要按照ansible的要求的格式返回給ansible命令的

怎么在ansible中動(dòng)態(tài)配置Inventory

提示沒(méi)有匹配的主機(jī)信息

分析: 數(shù)據(jù)庫(kù)已配置好,python腳本也能輸出,問(wèn)題在于輸出的結(jié)果不是ansible想要的格式作為ansible的命令輸入,因此排查如下

下面看下我的動(dòng)態(tài)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"
}

在網(wǎng)上找的方法,雖然實(shí)現(xiàn)了—list  --host的輸出,但是格式不滿(mǎn)足ansible格式輸出的要求,ansible需求的格式有哪些呢,請(qǐng)看解決辦法中….

輸出結(jié)果:

這是出錯(cuò)的信息,提示還是找不到主機(jī)的信息

[root@ansible fang]#
ansible-playbook -i ansible_inventory.py bb.yml運(yùn)行出錯(cuò)

解決方法:

先說(shuō)個(gè)知識(shí)點(diǎn)(ansible所要求的格式):

動(dòng)態(tài) Inventory 指通過(guò)外部腳本獲取主機(jī)列表,并按照 ansible 所要求的格式返回給 ansilbe 命令的

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

必須輸出為 JSON 格式

同時(shí)必須支持兩個(gè)參數(shù):--list 和 --host 。

--list:用于返回所有的主機(jī)組信息,每個(gè)組所包含的主機(jī)列表 hosts、所含子組列表 children、主機(jī)組變量列表 vars 都應(yīng)該是字典形式的,_meta 用來(lái)存放主機(jī)變量。

正確的輸出格式是什么樣子的呢,請(qǐng)看下面:

以下的是正確的動(dòng)態(tài)inventory的輸出格式,其中就是ansible的第三點(diǎn)要求 每個(gè)組所包含的主機(jī)列表 hosts、所含子組列表 children、主機(jī)組變量列表 vars 都應(yīng)該是字典形式的,_meta 用來(lái)存放主機(jī)變量。

[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]#

按照以上的格式,來(lái)編寫(xiě)我們的輸出吧,

SQL表格內(nèi)容如下:

怎么在ansible中動(dòng)態(tài)配置Inventory

我想要輸出的json格式是這樣的

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

腳本代碼列出來(lái)了如下:

#_*_coding:utf-8_*_
__author__ = 'fang'
import pymysql
import json
import argparse
import sys
def execude_sql(table): #定義一個(gè)執(zhí)行SQL的函數(shù)
  sql = 'select * from {0};'.format(table)
  cur.execute(sql) #args即要傳入SQL的參數(shù)
  sys_result = cur.fetchall()
  #index = cur.description
  hostlist = {}#放入主機(jī)清單的信息
  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 #文件對(duì)象,連接和游標(biāo)對(duì)象
  #連接數(shù)據(jù)庫(kù)
  con = pymysql.connect('127.0.0.1', 'root', '', 'ansible', charset='utf8') # 連接數(shù)據(jù)庫(kù)
  cur = con.cursor() # 定義一個(gè)游標(biāo) 
  data = execude_sql('hosts_table')
# parser = argparse.ArgumentParser()#定義參數(shù)解析器
#獲取參數(shù)的方法1:
#以下是參數(shù)解析器添加參數(shù)格式,有—list和—host dest表示都可以通過(guò)args.list或者args.host來(lái)獲取到可變參數(shù)的值,action中store_true表存儲(chǔ)的是布爾值,當(dāng)沒(méi)有—list的時(shí)候默認(rèn)false,當(dāng)有—list的時(shí)候,但是沒(méi)有值,默認(rèn)則為true,help表示幫助時(shí)候提示的信息,argparse很好用,在這里恰當(dāng)好處
  # 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)
#獲取參數(shù)的方法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 "% sys.argv[0]
     sys.exit(1)

坑 2: 動(dòng)態(tài)inventory腳本要制定python的解釋器,否則無(wú)法執(zhí)行

問(wèn)題分析:

Ansible-playbook –I ansbile_inventory.py bb.yml執(zhí)行

提示:無(wú)法識(shí)別host,還是出現(xiàn)了問(wèn)題

對(duì)比ansible要求的格式,沒(méi)有差別,最后進(jìn)行代碼的比對(duì),問(wèn)題出現(xiàn)在腳本沒(méi)有制定Python解釋器,導(dǎo)致出現(xiàn)的問(wèn)題

解決辦法:

添加python解釋器的路徑

怎么在ansible中動(dòng)態(tài)配置Inventory

執(zhí)行結(jié)果:

Yml文件

怎么在ansible中動(dòng)態(tài)配置Inventory

命令執(zhí)行結(jié)果:

[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"
    }
  }
}

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。


本文名稱(chēng):怎么在ansible中動(dòng)態(tài)配置Inventory-創(chuàng)新互聯(lián)
本文網(wǎng)址:http://weahome.cn/article/ehgji.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部