mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-10 12:32:03 +00:00
e2e stress exec 99% threshold
This commit is contained in:
parent
f81cce61e6
commit
f0730efd0a
@ -88,7 +88,8 @@ var _ = SIGDescribe("Kubectl exec", func() {
|
|||||||
errors = append(errors, err)
|
errors = append(errors, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(errors) > 0 {
|
// Accept a 99% success rate to be able to handle infrastructure errors
|
||||||
|
if len(errors) > (size*1)/100 {
|
||||||
framework.Failf("Exec failed %d times with following errors : %v", len(errors), errors)
|
framework.Failf("Exec failed %d times with following errors : %v", len(errors), errors)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user