Amend TODO comment about ClientConnectionConfiguration's types (#73375)

This commit is contained in:
Vallery Lancey 2019-01-27 13:50:21 -08:00
parent 8b98e802ed
commit d8369fd391

View File

@ -463,6 +463,7 @@ func createClients(config componentbaseconfig.ClientConnectionConfiguration, mas
kubeConfig.ContentType = config.ContentType
kubeConfig.QPS = config.QPS
//TODO make config struct use int instead of int32?
// https://github.com/kubernetes/kubernetes/issues/73375
kubeConfig.Burst = int(config.Burst)
client, err := clientset.NewForConfig(kubeConfig)