diff --git a/cmd/kube-apiserver/app/server.go b/cmd/kube-apiserver/app/server.go index 43d3d8f1a54..b0c9a2d9774 100644 --- a/cmd/kube-apiserver/app/server.go +++ b/cmd/kube-apiserver/app/server.go @@ -84,8 +84,10 @@ import ( "k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/bootstrap" ) -const etcdRetryLimit = 60 -const etcdRetryInterval = 1 * time.Second +const ( + etcdRetryLimit = 60 + etcdRetryInterval = 1 * time.Second +) // NewAPIServerCommand creates a *cobra.Command object with default parameters func NewAPIServerCommand(stopCh <-chan struct{}) *cobra.Command {