共计 559 个字符,预计需要花费 2 分钟才能阅读完成。
我们部署了 jenkins 的 Pipeline 的打包方式,通知需要使用企业微信。
参考官方
https://github.com/jenkinsci/qy-wechat-notification-plugin
pipeline {
agent any
stages {stage('Hello') {
steps {echo 'Hello World'}
}
}
post{
success{qyWechatNotification failNotify: true, mentionedId: '需要通知 UserID', mentionedMobile: '需要通知的通知手机号码', webhookUrl: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx-xxxxxx-xxxxxx'}
failure{qyWechatNotification failNotify: true, mentionedId: '需要通知 UserID', mentionedMobile: '需要通知的通知手机号码', webhookUrl: 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxx-xxxxxx-xxxxxx'}
}
我的是 k8s 的部署方式
打包配置如下
通知结果如下
正文完
发表至: 运维
2022-07-18