Skip to content

Commit

Permalink
update design
Browse files Browse the repository at this point in the history
Signed-off-by: yy <[email protected]>
  • Loading branch information
yangyy93 committed Aug 3, 2023
1 parent 5792281 commit 98cc6dc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions design/outlier-detection-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ type OutlierDetection struct {
// +optional
// +kubebuilder:validation:Maximum=100
MaxEjectionPercent *uint32 `json:"maxEjectionPercent,omitempty"`

// MaxEjectionTimeJitter is The maximum amount of jitter to add to the ejection time,
// in order to prevent a ‘thundering herd’ effect where all proxies try to reconnect to host at the same time.
// Defaults to 0s.
// +optional
// +kubebuilder:validation:Pattern=`^(((\d*(\.\d*)?s)|(\d*(\.\d*)?ms))+)$`
MaxEjectionTimeJitter *string `json:"maxEjectionTimeJitter,omitempty"`
}
```

Expand Down

0 comments on commit 98cc6dc

Please sign in to comment.