mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 12:18:16 +00:00 
			
		
		
		
	Merge pull request #76720 from xichengliudui/constant-block
Using const() defines constants together
This commit is contained in:
		@@ -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() *cobra.Command {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user