diff --git a/e2e/deploy-rook.go b/e2e/deploy-rook.go index 297c0ebec..a1ffcae73 100644 --- a/e2e/deploy-rook.go +++ b/e2e/deploy-rook.go @@ -3,6 +3,7 @@ package e2e import ( "fmt" "strings" + "time" . "github.com/onsi/gomega" // nolint metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -97,6 +98,8 @@ func deployToolBox(c kubernetes.Interface) { name := getPodName(rookNS, c, opt) err := waitForPodInRunningState(name, rookNS, c, deployTimeout) Expect(err).Should(BeNil()) + // this is a workaround, as we are hitting "unable to get monitor info from DNS SRV with service name: ceph-mon" + time.Sleep(30 * time.Second) } func deployRook() {