From 11ed2bd714f18fa844d71ffe17085418bde004a0 Mon Sep 17 00:00:00 2001 From: David Eads Date: Tue, 5 Sep 2017 14:08:21 -0400 Subject: [PATCH] fix annoying leader election typo --- pkg/client/leaderelectionconfig/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/leaderelectionconfig/config.go b/pkg/client/leaderelectionconfig/config.go index f8f18648fcb..ffa0bfd19a0 100644 --- a/pkg/client/leaderelectionconfig/config.go +++ b/pkg/client/leaderelectionconfig/config.go @@ -62,5 +62,5 @@ func BindFlags(l *componentconfig.LeaderElectionConfiguration, fs *pflag.FlagSet "of a leadership. This is only applicable if leader election is enabled.") fs.StringVar(&l.ResourceLock, "leader-elect-resource-lock", l.ResourceLock, ""+ "The type of resource object that is used for locking during "+ - "leader election. Supported options are `endpoints` (default) and `configmap`.") + "leader election. Supported options are `endpoints` (default) and `configmaps`.") }