Clean up PodDisruptionBudget doc comment.

This commit is contained in:
Matt Liggett 2016-05-06 13:19:44 -07:00
parent 2b46c4b7e2
commit 1f8ed7d015
2 changed files with 4 additions and 4 deletions

View File

@ -28,8 +28,8 @@ type PodDisruptionBudgetSpec struct {
// can be either an integer or a string specifying a percentage, e.g. "28%".
MinAvailable intstr.IntOrString `json:"minAvailable,omitempty"`
// Selector is a label query over pods whose evictions are managed by the
// disruption budget.
// Label query over pods whose evictions are managed by the disruption
// budget.
Selector *unversioned.LabelSelector `json:"selector,omitempty"`
}

View File

@ -29,8 +29,8 @@ type PodDisruptionBudgetSpec struct {
// can be either an integer or a string specifying a percentage, e.g. "28%".
MinAvailable intstr.IntOrString `json:"minAvailable,omitempty" protobuf:"bytes,1,opt,name=minAvailable"`
// Selector is a label query over pods whose evictions are managed by the
// disruption budget.
// Label query over pods whose evictions are managed by the disruption
// budget.
Selector *unversioned.LabelSelector `json:"selector,omitempty" protobuf:"bytes,2,opt,name=selector"`
}