mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Fix summary_test.go ARM build
This commit is contained in:
parent
d4aeaedba0
commit
e2b7424ee0
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user