Set non-zero default HTTP/File check intervals to avoid hotloop

cmd/integration.go was hot-looping for both, but did not need to.
This commit is contained in:
Clayton Coleman 2015-03-23 00:47:39 -04:00
parent ef758881d1
commit 90beaa3d61

View File

@ -287,6 +287,8 @@ func SimpleRunKubelet(client *client.Client,
Address: util.IP(net.ParseIP(address)),
EnableServer: true,
EnableDebuggingHandlers: true,
HTTPCheckFrequency: 1 * time.Second,
FileCheckFrequency: 1 * time.Second,
StatusUpdateFrequency: 3 * time.Second,
PodStatusUpdateFrequency: 2 * time.Minute,
SyncFrequency: 3 * time.Second,