Merge pull request #74110 from smarterclayton/fix_apitypo

api: Correct a typo in the API docs for rolling update strategy
This commit is contained in:
Kubernetes Prow Robot
2019-02-19 15:05:39 -08:00
committed by GitHub
12 changed files with 17 additions and 17 deletions

View File

@@ -407,7 +407,7 @@ type RollingUpdateDeployment struct {
// Example: when this is set to 30%, the new RC can be scaled up by 30%
// immediately when the rolling update starts. Once old pods have been killed,
// new RC can be scaled up further, ensuring that total number of pods running
// at any time during the update is atmost 130% of original pods.
// at any time during the update is at most 130% of original pods.
// +optional
MaxSurge intstr.IntOrString
}