Merge pull request #1066 from timoreimann/patch-1

Add missing fmt verb specifier in k8s provider.
This commit is contained in:
Emile Vauge 2017-01-26 14:50:50 +01:00 committed by GitHub
commit 18cf49755e

View file

@ -31,7 +31,7 @@ type Kubernetes struct {
func (provider *Kubernetes) newK8sClient() (k8s.Client, error) {
if provider.Endpoint != "" {
log.Infof("Creating in cluster Kubernetes client with endpoint %", provider.Endpoint)
log.Infof("Creating in cluster Kubernetes client with endpoint %v", provider.Endpoint)
return k8s.NewInClusterClientWithEndpoint(provider.Endpoint)
}
log.Info("Creating in cluster Kubernetes client")