We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f81cce6 commit f0730efCopy full SHA for f0730ef
test/e2e/kubectl/exec.go
@@ -88,7 +88,8 @@ var _ = SIGDescribe("Kubectl exec", func() {
88
errors = append(errors, err)
89
}
90
91
- if len(errors) > 0 {
+ // Accept a 99% success rate to be able to handle infrastructure errors
92
+ if len(errors) > (size*1)/100 {
93
framework.Failf("Exec failed %d times with following errors : %v", len(errors), errors)
94
95
})
0 commit comments