Skip to content

Commit

Permalink
Update and add e2e tests for HA prow jobs (gardener#8246)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sallyan authored Jul 19, 2023
1 parent 3bcde58 commit 39b0d6c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,9 @@ test-e2e-local-migration: $(GINKGO)
test-e2e-local-migration-ha-single-zone: $(GINKGO)
SHOOT_FAILURE_TOLERANCE_TYPE=node ./hack/test-e2e-local.sh --procs=$(PARALLEL_E2E_TESTS) --label-filter "Shoot && control-plane-migration" ./test/e2e/gardener/...
test-e2e-local-ha-single-zone: $(GINKGO)
SHOOT_FAILURE_TOLERANCE_TYPE=node ./hack/test-e2e-local.sh --procs=$(PARALLEL_E2E_TESTS) --label-filter "simple || (high-availability && upgrade-to-node)" ./test/e2e/gardener/...
SHOOT_FAILURE_TOLERANCE_TYPE=node ./hack/test-e2e-local.sh --procs=$(PARALLEL_E2E_TESTS) --label-filter "basic || (high-availability && upgrade-to-node)" ./test/e2e/gardener/...
test-e2e-local-ha-multi-zone: $(GINKGO)
SHOOT_FAILURE_TOLERANCE_TYPE=zone ./hack/test-e2e-local.sh --procs=$(PARALLEL_E2E_TESTS) --label-filter "simple || (high-availability && upgrade-to-zone)" ./test/e2e/gardener/...
SHOOT_FAILURE_TOLERANCE_TYPE=zone ./hack/test-e2e-local.sh --procs=$(PARALLEL_E2E_TESTS) --label-filter "basic || (high-availability && upgrade-to-zone)" ./test/e2e/gardener/...
test-e2e-local-operator: $(GINKGO)
./hack/test-e2e-local.sh operator --procs=1 --label-filter="default" ./test/e2e/operator/...

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gardener/shoot/create_and_delete_unprivileged.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var _ = Describe("Shoot Tests", Label("Shoot", "default"), func() {
},
}

It("Create and Delete Unprivileged Shoot", Label("unprivileged"), func() {
It("Create and Delete Unprivileged Shoot", Label("unprivileged", "basic"), func() {
By("Create Shoot")
ctx, cancel := context.WithTimeout(parentCtx, 15*time.Minute)
defer cancel()
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gardener/shoot/create_hibernate_wakeup_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var _ = Describe("Shoot Tests", Label("Shoot", "default"), func() {
})
}

Context("Shoot with workers", func() {
Context("Shoot with workers", Label("basic"), func() {
test(e2e.DefaultShoot("e2e-wake-up"))
})

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gardener/shoot/create_rotate_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ var _ = Describe("Shoot Tests", Label("Shoot", "default"), func() {
})
}

Context("Shoot with workers", func() {
Context("Shoot with workers", Label("basic"), func() {
test(e2e.DefaultShoot("e2e-rotate"))
})

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gardener/shoot/create_update_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ var _ = Describe("Shoot Tests", Label("Shoot", "default"), func() {
})
}

Context("Shoot with workers", func() {
Context("Shoot with workers", Label("basic"), func() {
test(e2e.DefaultShoot("e2e-default"))
})

Expand Down

0 comments on commit 39b0d6c

Please sign in to comment.