"":"DeploymentSpec is the specification of the desired behavior of the Deployment.",
"":"DeploymentSpec is the specification of the desired behavior of the Deployment.",
"replicas":"Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
"replicas":"Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
"selector":"Label selector for pods. Existing ReplicationControllers whose pods are selected by this will be the ones affected by this deployment.",
"selector":"Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.",
"template":"Template describes the pods that will be created.",
"template":"Template describes the pods that will be created.",
"strategy":"The deployment strategy to use to replace existing pods with new ones.",
"strategy":"The deployment strategy to use to replace existing pods with new ones.",
"minReadySeconds":"Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"minReadySeconds":"Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"revisionHistoryLimit":"The number of old ReplicationControllers to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.",
"revisionHistoryLimit":"The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.",
"paused":"Indicates that the deployment is paused and will not be processed by the deployment controller.",
"paused":"Indicates that the deployment is paused and will not be processed by the deployment controller.",
"rollbackTo":"The config this deployment is rolling back to. Will be cleared after rollback is done.",
"rollbackTo":"The config this deployment is rolling back to. Will be cleared after rollback is done.",
@@ -55,7 +55,7 @@ func GetOldReplicaSets(deployment extensions.Deployment, c clientset.Interface)
...
@@ -55,7 +55,7 @@ func GetOldReplicaSets(deployment extensions.Deployment, c clientset.Interface)
// GetOldReplicaSetsFromLists returns two sets of old replica sets targeted by the given Deployment; get PodList and ReplicaSetList with input functions.
// GetOldReplicaSetsFromLists returns two sets of old replica sets targeted by the given Deployment; get PodList and ReplicaSetList with input functions.
// Note that the first set of old replica sets doesn't include the ones with no pods, and the second set of old replica sets include all old replica sets.
// Note that the first set of old replica sets doesn't include the ones with no pods, and the second set of old replica sets include all old replica sets.