Skip to content

Commit

Permalink
Fix certmanager instability (#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkralik3 authored Aug 28, 2024
1 parent 4c302ff commit 0f34b7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/certmanageroperator/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ func install(t test.TestHelper) {
})

t.LogStep("Create root ca")
oc.ApplyString(t, certManagerNs, rootCA)
retry.UntilSuccessWithOptions(t, retry.Options().MaxAttempts(20).DelayBetweenAttempts(5*time.Second), func(t test.TestHelper) {
oc.ApplyString(t, certManagerNs, rootCA)
})
}

func Uninstall(t test.TestHelper) {
Expand Down

0 comments on commit 0f34b7f

Please sign in to comment.