Skip to content

Commit

Permalink
Fix read_only_fs test
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Sep 18, 2024
1 parent a34eb8f commit da7654f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ var _ = Describe(testName, func() {
ns.WaitForOutputAndLog(step, k, "true", 360)

step = "creating a datacenter resource with 1 rack/1 node"
k = kubectl.ApplyFiles(dcYaml)

testFile, err := ginkgo_util.CreateTestFile(dcYaml)
Expect(err).ToNot(HaveOccurred())
k = kubectl.ApplyFiles(testFile)
ns.ExecAndLog(step, k)

ns.WaitForDatacenterReady(dcName)
Expand Down

0 comments on commit da7654f

Please sign in to comment.