Update to heapster v0.14.0

This commit is contained in:
Vishnu Kannan
2015-06-09 16:55:39 -07:00
parent a1840218c4
commit a38204a498
8 changed files with 43 additions and 17 deletions

View File

@@ -56,8 +56,8 @@ const (
influxdbDatabaseName = "k8s"
influxdbUser = "root"
influxdbPW = "root"
podlistQuery = "select distinct(pod_id) from /cpu.*/"
nodelistQuery = "select distinct(hostname) from /cpu.*/"
podlistQuery = "select distinct(pod_id) from \"cpu/usage_ns_cumulative\""
nodelistQuery = "select distinct(hostname) from \"cpu/usage_ns_cumulative\""
sleepBetweenAttempts = 5 * time.Second
testTimeout = 5 * time.Minute
)