Merge pull request #37091 from kargakis/doc-fix

Automatic merge from submit-queue

extensions: fix api doc for maxUnavailable

Fixes https://github.com/kubernetes/kubernetes/issues/37083

@kubernetes/deployment
This commit is contained in:
Kubernetes Submit Queue
2016-11-29 07:33:28 -08:00
committed by GitHub
9 changed files with 11 additions and 11 deletions

View File

@@ -993,7 +993,7 @@ message RollbackConfig {
message RollingUpdateDeployment {
// The maximum number of pods that can be unavailable during the update.
// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
// Absolute number is calculated from percentage by rounding up.
// Absolute number is calculated from percentage by rounding down.
// This can not be 0 if MaxSurge is 0.
// By default, a fixed value of 1 is used.
// Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods