Skip to content

Commit 22de82a

Browse files
john-gaughanTim Bannister
andauthored
Add clause about waiting for new pods before removing old ones
Co-authored-by: Tim Bannister <[email protected]>
1 parent 4f4519d commit 22de82a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/tutorials/kubernetes-basics/update/update-intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h3>Objectives</h3>
2727
<div class="col-md-8">
2828
<h3>Updating an application</h3>
2929

30-
<p>Users expect applications to be available all the time, and developers are expected to deploy new versions of them several times a day. In Kubernetes this is done with rolling updates. A <b>rolling update</b> allows a Deployment update to take place with zero downtime. It does this by incrementally replacing the current Pods with new ones. The new Pods are scheduled on Nodes with available resources.</p>
30+
<p>Users expect applications to be available all the time, and developers are expected to deploy new versions of them several times a day. In Kubernetes this is done with rolling updates. A <b>rolling update</b> allows a Deployment update to take place with zero downtime. It does this by incrementally replacing the current Pods with new ones. The new Pods are scheduled on Nodes with available resources, and Kubernetes waits for those new Pods to start before removing the old Pods.</p>
3131

3232
<p>In the previous module we scaled our application to run multiple instances. This is a requirement for performing updates without affecting application availability. By default, the maximum number of Pods that can be unavailable during the update and the maximum number of new Pods that can be created, is one. Both options can be configured to either numbers or percentages (of Pods).
3333
In Kubernetes, updates are versioned and any Deployment update can be reverted to a previous (stable) version.</p>

0 commit comments

Comments
 (0)