yipeng1030
yipeng1030
感谢作者的源码分析,在学习过程中发现一处值得讨论的地方 你提到deployment在rollout 暂停状态下会执行完未完成的scale后不再响应scale,但这篇[blog](https://www.alibabacloud.com/blog/pause-resume-and-scale-kubernetes-deployments_595019) 中Scaling Paused Deployments一节的实验,在rollout paused状态下仍然可以scale in。 结合源代码分析,scale的常规入口确实在pause后不再执行,但pause直接进入了和scale相同的sync处理函数中,是否相当于pause后直接在sync函数中进行scale操作的调谐呢?
**support cluster pause and resume** - Fixes #6969 - Pause Cluster, Component, and InstanSet Annotate the cluster, cascade pause Components (by annotating) and InstanceSets (reuse the Paused field), after pausing,...