Skip to content

Commit

Permalink
Merge pull request #203 from prashanth26/enhancement/leader-election-…
Browse files Browse the repository at this point in the history
…defaults

Leader election defaults were updated
  • Loading branch information
hardikdr authored Dec 21, 2018
2 parents f883244 + 533c48c commit 50e5528
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .ci/integration-tests
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ function run_controller() {
--machine-safety-apiserver-statuscheck-period=1m \
--machine-safety-orphan-vms-period=30m \
--machine-safety-overshooting-period=1m \
--leader-elect-lease-duration=1m \
--leader-elect-renew-deadline=30s \
--leader-elect-retry-period=15s \
--v=2 > logs/${provider}-mcm.out 2>&1 &
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/util/client/leaderelectionconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const (
// DefaultLeaderElectionConfiguration the default configurations used for leader election
func DefaultLeaderElectionConfiguration() options.LeaderElectionConfiguration {
return options.LeaderElectionConfiguration{
LeaderElect: false,
LeaderElect: true,
LeaseDuration: metav1.Duration{Duration: DefaultLeaseDuration},
RenewDeadline: metav1.Duration{Duration: DefaultRenewDeadline},
RetryPeriod: metav1.Duration{Duration: DefaultRetryPeriod},
Expand Down

0 comments on commit 50e5528

Please sign in to comment.