Merge pull request #66605 from islinwb/default_RevisionHistoryLimit

Default extensions/v1beta1 Deployment's RevisionHistoryLimit to MaxInt32
This commit is contained in:
k8s-ci-robot
2018-10-08 10:41:46 -07:00
committed by GitHub
12 changed files with 37 additions and 5 deletions

View File

@@ -87324,7 +87324,7 @@
"format": "int32"
},
"revisionHistoryLimit": {
"description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.",
"description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old RelicaSets\".",
"type": "integer",
"format": "int32"
},

View File

@@ -10082,7 +10082,7 @@
"revisionHistoryLimit": {
"type": "integer",
"format": "int32",
"description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified."
"description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old RelicaSets\"."
},
"paused": {
"type": "boolean",