ansible作为python模块库使用的方法实例


Posted in Python onJanuary 17, 2017

前言

ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。ansible是基于模块工作的,本身没有批量部署的能力。真正具有批量部署的是ansible所运行的模块,ansible只是提供一种框架。

主要包括:

      (1)、连接插件connection plugins:负责和被监控端实现通信;

      (2)、host inventory:指定操作的主机,是一个配置文件里面定义监控的主机;

      (3)、各种模块核心模块、command模块、自定义模块;

      (4)、借助于插件完成记录日志邮件等功能;

      (5)、playbook:剧本执行多个任务时,非必需可以让节点一次性运行多个任务。

Asible是运维工具中算是非常好的利器,我个人比较喜欢,可以根据需求灵活配置yml文件来实现不同的业务需求,因为不需要安装客户端,上手还是非常容易的,在某些情况下你可能需要将ansible作为python的一个库组件写入到自己的脚本中,今天的脚本脚本就将展示下ansible如何跟python脚本结合,也就是如何在python脚本中使用ansible,我们逐步展开。

先看第一个例子:

#!/usr/bin/python 
import ansible.runner
import ansible.playbook
import ansible.inventory
from ansible import callbacks
from ansible import utils
import json
 
# the fastest way to set up the inventory
 
# hosts list
hosts = ["10.11.12.66"]
# set up the inventory, if no group is defined then 'all' group is used by default
example_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运行系统命令,我们接下来看第二个例子,跟我们的yml文件对接。

简单的yml文件内容如下:

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

调用playbook的python脚本如下:

#!/usr/bin/python 
import ansible.runner
import ansible.playbook
import ansible.inventory
from ansible import callbacks
from ansible import utils
import 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 playbook
example_host.set_variable( 'var', 'foo')
 
## secondly set up the group where the host(s) has to be added
example_group = ansible.inventory.group.Group(
 name = 'sample_group_name'
 )
example_group.add_host(example_host)
 
## the last step is set up the invetory itself
example_inventory = ansible.inventory.Inventory()
example_inventory.add_group(example_group)
example_inventory.subset('sample_group_name')
 
# setting callbacks
stats = 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" file
pb = ansible.playbook.PlayBook(
 playbook = "test.yml",
 stats = stats,
 callbacks = playbook_cb,
 runner_callbacks = runner_cb,
 inventory = example_inventory,
 check=True
 )
 
# running the playbook
pr = pb.run() 
 
# print the summary of results for each host
print json.dumps(pr, sort_keys=True, indent=4, separators=(',', ': '))

总结

以上就是为大家展示的2个小例子希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

Python 相关文章推荐
Python中的True,False条件判断实例分析
Jan 12 Python
在Python中操作文件之truncate()方法的使用教程
May 25 Python
Python实现针对给定单链表删除指定节点的方法
Apr 12 Python
python验证码识别教程之滑动验证码
Jun 04 Python
Python用于学习重要算法的模块pygorithm实例浅析
Aug 16 Python
Python实现拷贝/删除文件夹的方法详解
Aug 29 Python
python3 实现验证码图片切割的方法
Dec 07 Python
python实现小球弹跳效果
May 10 Python
django中related_name的用法说明
May 20 Python
Python接口测试文件上传实例解析
May 22 Python
Python中Yield的基本用法
Oct 18 Python
pandas求平均数和中位数的方法实例
Aug 04 Python
python 基础教程之Map使用方法
Jan 17 #Python
Python获取某一天是星期几的方法示例
Jan 17 #Python
Python正则表达式匹配中文用法示例
Jan 17 #Python
python下如何查询CS反恐精英的服务器信息
Jan 17 #Python
python基础教程之匿名函数lambda
Jan 17 #Python
python基础教程之Filter使用方法
Jan 17 #Python
python正则分析nginx的访问日志
Jan 17 #Python
You might like
PHP中的排序函数sort、asort、rsort、krsort、ksort区别分析
2014/08/18 PHP
php实现判断访问来路是否为搜索引擎机器人的方法
2015/04/15 PHP
PHP实现用户登录的案例代码
2018/05/10 PHP
PHP精确到毫秒秒杀倒计时实例详解
2019/03/14 PHP
javascript 鼠标拖动图标技术
2010/02/07 Javascript
JavaScript Event学习补遗 addEventSimple
2010/02/11 Javascript
纯js实现背景图片切换效果代码
2010/11/14 Javascript
jquery $.getJSON()跨域请求
2011/12/21 Javascript
DOM2非标准但却支持很好的几个属性小结
2012/01/21 Javascript
js不完美解决click和dblclick事件冲突问题
2012/07/16 Javascript
ionic隐藏tabs的方法
2016/08/29 Javascript
Vue.js使用v-show和v-if的注意事项
2016/12/13 Javascript
Javascript 链式作用域详细介绍
2017/02/23 Javascript
BootStrap表单验证 FormValidation 调整反馈图标位置的实例代码
2017/05/17 Javascript
jquery+css实现简单的图片轮播效果
2017/08/07 jQuery
vue.js框架实现表单排序和分页效果
2017/08/09 Javascript
vue+vuecli+webpack中使用mockjs模拟后端数据的示例
2017/10/24 Javascript
使用veloticy-ui生成文字动画效果
2018/02/08 Javascript
LayUI表格批量删除方法
2018/08/15 Javascript
详解element-ui表格中勾选checkbox,高亮当前行
2019/09/02 Javascript
layui-table获得当前行的上/下一行数据的例子
2019/09/24 Javascript
[45:16]完美世界DOTA2联赛循环赛 IO vs FTD BO2第二场 11.05
2020/11/06 DOTA
Python实现二分法算法实例
2015/02/02 Python
浅谈Python 的枚举 Enum
2017/06/12 Python
Flask核心机制之上下文源码剖析
2018/12/25 Python
对Python强大的可变参数传递机制详解
2019/06/13 Python
Python编写打字训练小程序
2019/09/26 Python
Django Form常用功能及代码示例
2020/10/13 Python
HTML5 Convas APIs方法详解
2015/04/24 HTML / CSS
英国第一的市场和亚马逊替代品:OnBuy
2019/03/16 全球购物
实现strstr功能,即在父串中寻找子串首次出现的位置
2016/08/05 面试题
法定代表人授权委托书
2014/04/04 职场文书
法律系毕业生求职信
2014/05/28 职场文书
2015年师德师风自我评价范文
2015/03/05 职场文书
幼儿园教师师德表现自我评价
2015/03/05 职场文书
MySQL 8.0 Online DDL快速加列的相关总结
2021/06/02 MySQL