国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

ansible作為python模塊庫使用的方法實例

2020-02-23 04:16:23
字體:
來源:轉載
供稿:網友

前言

ansible是新出現(xiàn)的自動化運維工具,基于Python開發(fā),集合了眾多運維工具(puppet、cfengine、chef、func、fabric)的優(yōu)點,實現(xiàn)了批量系統(tǒng)配置、批量程序部署、批量運行命令等功能。ansible是基于模塊工作的,本身沒有批量部署的能力。真正具有批量部署的是ansible所運行的模塊,ansible只是提供一種框架。

主要包括:

      (1)、連接插件connection plugins:負責和被監(jiān)控端實現(xiàn)通信;

      (2)、host inventory:指定操作的主機,是一個配置文件里面定義監(jiān)控的主機;

      (3)、各種模塊核心模塊、command模塊、自定義模塊;

      (4)、借助于插件完成記錄日志郵件等功能;

      (5)、playbook:劇本執(zhí)行多個任務時,非必需可以讓節(jié)點一次性運行多個任務。

Asible是運維工具中算是非常好的利器,我個人比較喜歡,可以根據(jù)需求靈活配置yml文件來實現(xiàn)不同的業(yè)務需求,因為不需要安裝客戶端,上手還是非常容易的,在某些情況下你可能需要將ansible作為python的一個庫組件寫入到自己的腳本中,今天的腳本腳本就將展示下ansible如何跟python腳本結合,也就是如何在python腳本中使用ansible,我們逐步展開。

先看第一個例子:

#!/usr/bin/python import ansible.runnerimport ansible.playbookimport ansible.inventoryfrom ansible import callbacksfrom ansible import utilsimport json # the fastest way to set up the inventory # hosts listhosts = ["10.11.12.66"]# set up the inventory, if no group is defined then 'all' group is used by defaultexample_inventory = ansible.inventory.Inventory(hosts) pm = ansible.runner.Runner( module_name = 'command', module_args = 'uname -a', timeout = 5, inventory = example_inventory, subset = 'all' # name of the hosts group  ) out = pm.run() print json.dumps(out, sort_keys=True, indent=4, separators=(',', ': '))

這個例子展示我們如何在python腳本中運行如何通過ansible運行系統(tǒng)命令,我們接下來看第二個例子,跟我們的yml文件對接。

簡單的yml文件內容如下:

- hosts: sample_group_name tasks: - name: just an uname command: uname -a

調用playbook的python腳本如下:

#!/usr/bin/python import ansible.runnerimport ansible.playbookimport ansible.inventoryfrom ansible import callbacksfrom ansible import utilsimport json ### setting up the inventory ## first of all, set up a host (or more)example_host = ansible.inventory.host.Host( name = '10.11.12.66', port = 22 )# with its variables to modify the playbookexample_host.set_variable( 'var', 'foo') ## secondly set up the group where the host(s) has to be addedexample_group = ansible.inventory.group.Group( name = 'sample_group_name' )example_group.add_host(example_host) ## the last step is set up the invetory itselfexample_inventory = ansible.inventory.Inventory()example_inventory.add_group(example_group)example_inventory.subset('sample_group_name') # setting callbacksstats = callbacks.AggregateStats()playbook_cb = callbacks.PlaybookCallbacks(verbose=utils.VERBOSITY)runner_cb = callbacks.PlaybookRunnerCallbacks(stats, verbose=utils.VERBOSITY) # creating the playbook instance to run, based on "test.yml" filepb = ansible.playbook.PlayBook( playbook = "test.yml", stats = stats, callbacks = playbook_cb, runner_callbacks = runner_cb, inventory = example_inventory, check=True ) # running the playbookpr = pb.run()  # print the summary of results for each hostprint json.dumps(pr, sort_keys=True, indent=4, separators=(',', ': '))            
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 昌图县| 叶城县| 汾西县| 泽州县| 东台市| 阜阳市| 赤城县| 左云县| 肥城市| 武乡县| 延寿县| 民和| 宜丰县| 崇义县| 米脂县| 轮台县| 金湖县| 盐城市| 原平市| 宜州市| 漯河市| 钟山县| 定远县| 蚌埠市| 师宗县| 西青区| 神农架林区| 桐乡市| 镇坪县| 上饶县| 射洪县| 长顺县| 绿春县| 新河县| 栖霞市| 北辰区| 大安市| 遂平县| 沁水县| 新龙县| 新营市|