diff --git a/e2e/errors.go b/e2e/errors.go index 31aad8ad0..fc84c8d35 100644 --- a/e2e/errors.go +++ b/e2e/errors.go @@ -103,6 +103,10 @@ func isAlreadyExistsCLIError(err error) bool { if strings.TrimSuffix(s, "\n") == "" { continue } + // Ignore warnings + if strings.Contains(s, "Warning") { + continue + } // Resource already exists error message if !strings.Contains(s, "Error from server (AlreadyExists)") { return false