add client request timeout and dialer deadline

This commit is contained in:
Ryan Phillips 2017-09-26 18:09:40 -05:00
parent 904c3facd9
commit 0318cd99b0
1 changed files with 4 additions and 1 deletions

View File

@ -333,7 +333,10 @@ func newClient(cluster k8sapi.Cluster, user k8sapi.AuthInfo, namespace string, l
logger.Infof("kubernetes client apiVersion = %s", apiVersion)
return &client{
client: &http.Client{Transport: t},
client: &http.Client{
Transport: t,
Timeout: 15 * time.Second,
},
baseURL: cluster.Server,
hash: func() hash.Hash { return fnv.New64() },
namespace: namespace,