1 安装钉钉插件

需要使用 DingTalk 插件,安装步骤如下:

登录 jenkins,选择【系统管理】–》【插件管理】–》可选插件 搜索到以后选中安装即可。

image-20211011155333293

2 配置插件

【系统管理】–》【配置】–》钉钉

image-20211011155345374

3 pipeline 中使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pipeline {
agent any
stages {
stage('Build and Push Image') {
steps {
sh '/usr/local/bin/kubectl --kubeconfig=/var/lib/jenkins/.kube/devconfig rollout restart deployment ${JOB_NAME} -n rongxin'
}
post {
success {
dingtalk (
robot: '机器人id',
type: '文本类型',
title: '标题',
text: [
'###内容',
'[要跳转的url](${STATUS_URL})'
],
at: [
'群里要@的人手机号' ]
)
}
}
}
}
}