如果jenkins管道故障,如何保持pod



如果Jenkins管道失败,是否有办法保持Jenkins slave pod ?

我试过podRetention: onFailure(),但根据jenkins jira:

只有当pod处于故障或未知状态时,它才会保留pod,不是工作

请尝试使用podreretention always()。下面的例子对我有用:

kubernetes {
cloud 'ci-build'
defaultContainer 'shell'
podRetention always()
yaml podTemplate ...

相关内容

  • 没有找到相关文章

最新更新