python将ansible配置转为json格式实例代码
Python  /  管理员 发布于 7年前   177
python将ansible配置转为json格式实例代码
ansible的配置文件举例如下,这种配置文件不利于在前端的展现,因此,我们用一段简单的代码将ansible的配置文件转为json格式的:
[webserver]192.168.204.70192.168.204.71[dbserver]192.168.204.72192.168.204.73192.168.204.75[proxy]192.168.204.76192.168.204.77192.168.204.78[test]192.168.204.79192.168.204.80[haproxy]192.168.205.82192.168.204.83
用python将ansible配置转为json格式,python代码如下:
import ConfigParserimport jsondict_result = {}cf = ConfigParser.ConfigParser(allow_no_value=True)cf.read('/etc/ansible/hosts.test')secs = cf.sections()for sec in secs: dict_result[sec] = cf.options(sec)print json.dumps(dict_result)转换结果如下(python版本使用2.7版本的):
/usr/local/python/bin/python /tmp/test.py
{"test": ["192.168.204.79", "192.168.204.80"], "haproxy": ["192.168.205.82", "192.168.204.83"], "webserver": ["192.168.204.70", "192.168.204.71"], "proxy": ["192.168.204.76", "192.168.204.77", "192.168.204.78"], "dbserver": ["192.168.204.72", "192.168.204.73", "192.168.204.75"]}
转换成json文件就方便在前端进行展示了,使用Flask提供json格式的接口如下:
#获取ansible分组@app.route('/web_test/ansible')def web_test_ansible(): dict_result = {} cf = ConfigParser.ConfigParser(allow_no_value=True) cf.read('/etc/ansible/hosts.test') secs = cf.sections() for sec in secs: dict_result[sec] = cf.options(sec) return json.dumps(dict_result) 然后前端代码(使用bootstrap treeview)如下:
<script src="https:static/js/bootstrap-treeview.js"></script> <script type="text/javascript"> $(document).ready(function () { $('#btn-get-hostgroup').click(function () { getAllCheck = $('#hostgrouptree').treeview('getChecked'); for (var i = 0; i < getAllCheck.length; i++) { console.log(getAllCheck[i].text); } }); $.ajax({ url: '/web_test/ansible', type: 'GET', success: function (data) { result = JSON.parse(data); nodes = []; for (var hostgroup in result) {var nodeshostgroup = [];hosts = result[hostgroup];for (var i = 0; i < hosts.length; i++) { nodeshostgroup.push({text: hosts[i], selectable:false});}nodes.push({text: hostgroup, nodes: nodeshostgroup, selectable:false}); } $('#hostgrouptree').treeview({data: [{text: 'all', nodes: nodes, selectable:false}], showCheckbox: true, showBorder:false}); } }); }); </script>{% endblock %}{% block page_content %} <div class="col-md-4" id="hostgrouptree"> </div> <div class="col-md-6"> <button id="btn-get-hostgroup" type="button" class="btn btn-default">获取选中的组</button> </div> ansible的配置文件在前端的展示如下,获取ansible选中的组,利用ansible命令就可以实现一些简单的自动化操作了:
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
