Controller: Make Leader Election TTL configurable. (#11142)
* feature(leader_ttl): feature to customize ttl to leader be re-elected * fix(review): docs
This commit is contained in:
parent
aedb13c9fa
commit
7c8af4928b
9 changed files with 93 additions and 8 deletions
|
|
@ -274,8 +274,9 @@ func (n *NGINXController) Start() {
|
|||
if !n.cfg.DisableLeaderElection {
|
||||
electionID := n.cfg.ElectionID
|
||||
setupLeaderElection(&leaderElectionConfig{
|
||||
Client: n.cfg.Client,
|
||||
ElectionID: electionID,
|
||||
Client: n.cfg.Client,
|
||||
ElectionID: electionID,
|
||||
ElectionTTL: n.cfg.ElectionTTL,
|
||||
OnStartedLeading: func(stopCh chan struct{}) {
|
||||
if n.syncStatus != nil {
|
||||
go n.syncStatus.Run(stopCh)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue