This question already has answers here:
How can I trigger a Kubernetes Scheduled Job manually?

(7个答案)


1年前关闭。




对于已部署的名为foo的Kubernetes CronJob,如何立即手动运行它?这将用于测试或在其配置的时间表之外进行手动运行。

最佳答案

您可以根据现有作业的配置来启 Action 业,而cronjob只是另一种作业。

句法:kubectl create job --from=cronjob/$CronJobName $NameToGiveThePodThatWillBeCreated
例如。:kubectl create job --from=cronjob/foo foo-manual-1

关于kubernetes - 手动启动Kubernetes CronJob,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57294106/

10-16 02:21