Commit 186a4a06 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #33778 from timstclair/summary-arm

Automatic merge from submit-queue Fix summary_test.go ARM build Fixes https://github.com/kubernetes/kubernetes/issues/33761 /cc @ixdy @luxas
parents 8f918d36 e2b7424e
...@@ -46,10 +46,10 @@ var _ = framework.KubeDescribe("Summary API [Flaky]", func() { ...@@ -46,10 +46,10 @@ var _ = framework.KubeDescribe("Summary API [Flaky]", func() {
// Setup expectations. // Setup expectations.
const ( const (
kb = 1000 kb int64 = 1000
mb = 1000 * kb mb int64 = 1000 * kb
gb = 1000 * mb gb int64 = 1000 * mb
tb = 1000 * gb tb int64 = 1000 * gb
maxStartAge = time.Hour * 24 * 365 // 1 year maxStartAge = time.Hour * 24 * 365 // 1 year
maxStatsAge = time.Minute maxStatsAge = time.Minute
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment