如果jenkins管道发生故障,有没有办法保持jenkins从pod?我尝试了podRetention: onFailure(),但根据jenkins jira:仅当pod处于故障或未知状态时,它才会保留pod,而不是作业
podRetention: onFailure()
oyjwcjzk1#
请尝试使用podRetention always()。下面的例子对我有用:
kubernetes { cloud 'ci-build' defaultContainer 'shell' podRetention always() yaml podTemplate ...
1条答案
按热度按时间oyjwcjzk1#
请尝试使用podRetention always()。下面的例子对我有用: