Skip to content

Commit

Permalink
vCore: sleep added before pv creation stage to avoid failure (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
elenagerman authored Aug 19, 2024
1 parent 535565f commit 9383dc8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ func VerifyLSOSuite() {
func VerifyLSONamespaceExists(ctx SpecContext) {
err := apiobjectshelper.VerifyNamespaceExists(APIClient, vcoreparams.LSONamespace, time.Second)
Expect(err).ToNot(HaveOccurred(), fmt.Sprintf("Failed to pull namespace %q; %v", vcoreparams.LSONamespace, err))

glog.V(vcoreparams.VCoreLogLevel).Infof("Short sleep to stabilize nodes to avoid pv creation failure")

time.Sleep(10 * time.Minute)
} // func VerifyLSONamespaceExists (ctx SpecContext)

// VerifyLSODeployment asserts Local Storage Operator successfully installed.
Expand Down

0 comments on commit 9383dc8

Please sign in to comment.