比较跨实例

时间:2016-11-24 06:05:08

标签: python jenkins jenkins-plugins jenkins-cli

我有6个Jenkins主机和一个生产Jenkins主机,我们使用接近100个插件。我们希望确保所有实例都具有相同的插件及其各自的版本。

我们尝试使用curl命令来检索特定主机使用的插件列表。我们正在尝试开发实用程序来比较所有主机上的插件版本,并告诉我们生产主机上是否缺少任何插件。

curl 'https://<Jenkins url>/pluginManager/api/xml?depth=1&x‌​path=/*/*/shortName|‌​/*/*/version&wrapper‌​=plugins' | perl -pe 's/.*?<shortName>([\w-]+).*?<version>([^<]+)()(<\/\w+>)+/\1 \2\n/g'

2 个答案:

答案 0 :(得分:1)

这不是一个完整的解决方案,但你绝对可以利用Python库来比较版本不兼容性或缺少插件。

    import xml.etree.ElementTree as ET
import requests
import sys
from itertools import zip_longest
import itertools
from collections import OrderedDict
import collections
import csv

url = sys.argv[1].strip()
filename = sys.argv[2].strip()

response = requests.get(url+'/pluginManager/api/xml?depth=1',stream=True)
response.raw.decode_content = True
tree = ET.parse(response.raw)
root = tree.getroot()
data = {}
for plugin in root.findall('plugin'):
    longName = plugin.find('longName').text
    shortName = plugin.find('shortName').text
    version = plugin.find('version').text
    data[longName] = version
    with open(filename, 'w') as f:
        [f.write('{0},{1}\n'.format(key, value)) for key, value in data.items()]

将以csv格式为您提供插件列表!

以后可用于与另一个实例进行比较,所有这些都可以在一个python脚本中实现。

答案 1 :(得分:0)

我们在shell中这样做:

java -jar jenkins-cli.jar -s <jenkins-url> list-plugins > <outputfile>

然后我们使用不同主机的输出来确定差异。