Merge pull request #38029 from gurpalw/patch-1
Fix incorrect information on disruption budgetspull/38037/head
commit
f0347edef3
|
@ -69,7 +69,7 @@ has 5 replicas, with `maxUnavailable` set to 2 and `partition` set to 0.
|
|||
I can trigger a rolling update by changing the image to `k8s.gcr.io/nginx-slim:0.9`. Once I initiate the rolling update, I can
|
||||
watch the pods update 2 at a time as the current value of maxUnavailable is 2. The below output shows a span of time and is not
|
||||
complete. The maxUnavailable can be an absolute number (for example, 2) or a percentage of desired Pods (for example, 10%). The
|
||||
absolute number is calculated from percentage by rounding down.
|
||||
absolute number is calculated from percentage by rounding up to the nearest integer.
|
||||
```
|
||||
kubectl get pods --watch
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue