Merge pull request #125741 from nilekhc/svm-crd-flake

[Storage Version Migrator] fix: increases timeout on CRD update check
This commit is contained in:
Kubernetes Prow Robot 2024-06-26 15:15:32 -07:00 committed by GitHub
commit 9626cd34f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -767,7 +767,7 @@ func (svm *svmTest) waitForCRDUpdate(
err := wait.PollUntilContextTimeout(
ctx,
500*time.Millisecond,
wait.ForeverTestTimeout,
time.Second*60,
true,
func(ctx context.Context) (bool, error) {
apiGroups, _, err := svm.discoveryClient.ServerGroupsAndResources()