新节点的 Cron 作业计时

Cron job timing with new nodes

假设我有一个 kubernetes Cron 作业,每天上午 10 点 运行,但它需要提供新节点才能 运行。 k8 会等到上午 10 点才开始配置这些资源吗(因此实际上 运行ning 在上午 10 点之后的某个时间)?或者它会在上午 10 点准备好一切吗?有设置来控制这个吗?

Will k8 wait until 10am to start provisioning those resources...

没有。 K8s 不提供计算机节点并使计算机加入集群。

...will it have everything ready to go at 10am?

作业将在预定的时间创建,并且 pod 将被生成。那时如果你的集群 运行s 离开节点到 运行 pod,那么 pod 将进入 pending 状态。此时如果您在集群中配置了 autoscaler,autoscaler 将请求一个新节点加入您的集群,以便 pending pod 可以 运行.