jenkins安裝

一、下載docker鏡像
To use the latest LTS: docker pull jenkins/jenkins:lts
To use the latest weekly: docker pull jenkins/jenkins

二、運行docker鏡像
docker run -d -u 0 -p 8080:8080 -p 50000:50000 -v /data/jenkins_home:/var/jenkins_home jenkins/jenkins:lts

三、系統初始化密碼文件
/data/jenkins_home/secrets/initialAdminPassword

四、python jenkins
pip install python-jenkins
使用文檔:http://python-jenkins.readthedocs.io/en/latest/examples.html#example-1-get-version-of-jenkins
創建任務
import jenkins

server = jenkins.Jenkins('http://localhost:8080', username='admin', password='passwd')

job_xml = """<?xml version='1.0' encoding='UTF-8'?>
<flow-definition plugin='[email protected]'>
<actions/>
<description>pipeline測試</description>
<keepDependencies>false</keepDependencies>
<properties/>
<definition class='org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition' plugin='[email protected]'>
<script>node {
stage('get clone'){
echo 'git clone ......'
}
stage('mvn test'){
echo 'mvn test ......'
}
stage('mvn build'){
echo 'mvn clean install ......'
}
stage('deploy'){
echo 'deploy ......'
}
}</script>
<sandbox>true</sandbox>
</definition>
<triggers/>
<disabled>false</disabled>
</flow-definition>"""

server.create_job('pipeline測試', job_xml)

五、xml轉yaml
pip install jenkins-job-wrecker
https://github.com/ktdreyer/jenkins-job-wrecker

jjwrecker -f path/to/my-job/config.xml -n 'my-job' 文件會生成到當前路徑的:"output"文件夾中

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章