Skip to content

Commit

Permalink
e2e-tests: turn resurrection "off"
Browse files Browse the repository at this point in the history
- by default resurrection is "on"
- can't run bosh cck and resurrection at the same time

[#185752726](https://www.pivotaltracker.com/story/show/185752726)

Co-authored-by: Kyle Ong <[email protected]>
Co-authored-by: Ryan Wittrup <[email protected]>
  • Loading branch information
ohkyle and ryanwittrup committed Oct 2, 2023
1 parent 4f9ce7a commit c582f05
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/e2e-tests/failover_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
. "github.com/onsi/gomega"

"e2e-tests/utilities/bosh"
"e2e-tests/utilities/cmd"
)

var _ = Describe("Failover", Ordered, Label("failover"), func() {
Expand All @@ -19,6 +20,10 @@ var _ = Describe("Failover", Ordered, Label("failover"), func() {
BeforeAll(func() {
deploymentName = "pxc-failover-" + uuid.New().String()

Expect(cmd.Run(
"bosh", "update-resurrection", "off",
)).To(Succeed())

Expect(bosh.DeployPXC(deploymentName,
bosh.Operation("use-clustered.yml"),
bosh.Operation("test/seed-test-user.yml"),
Expand Down

0 comments on commit c582f05

Please sign in to comment.