Merge pull request #4002 from alrs/fix-install-err

pkg/install: fix dropped error
This commit is contained in:
Scott Seago
2021-08-04 09:17:42 -04:00
committed by GitHub

View File

@@ -103,6 +103,9 @@ func crdsAreReady(factory client.DynamicFactory, crdKinds []string) (bool, error
return true, nil
})
if err != nil {
return false, errors.Wrap(err, "Error polling for CRD")
}
return areReady, nil
}