Our goal is to foster an ecosystem of components and tools that relieve the burden of running applications in public and private clouds. https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/ https://kubernetes.io/ Kubernetes is an open-sou…
Rolling Update滚动更新 通过使用新版本的 Pod 逐步替代旧版本的 Pod 来实现 Deployment 的更新,从而实现零停机.新的 Pod 将在具有可用资源的 Node(节点)上进行调度. Kubernetes 更新多副本的 Deployment 的版本时,会逐步的创建新版本的 Pod,逐步的停止旧版本的 Pod,以便使应用一直处于可用状态.这个过程中,Service 能够监视 Pod 的状态,将流量始终转发到可用的 Pod 上. 默认情况下,Rolling Update 滚动…