Skip to content

Commit ed847e1

Browse files
do not fail if deployment or sts already exists
1 parent a2382d6 commit ed847e1

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ test: manifests generate fmt vet envtest ## Run tests.
152152
.PHONY: test-e2e # Run the e2e tests against a Kind k8s instance that is spun up.
153153
test-e2e: load-kind ginkgo
154154
$(GINKGO_BIN) \
155-
-vv \
156155
-procs=$(E2E_TESTS_CONCURRENCY) \
157156
-timeout=30m \
158157
-junit-report=report.xml ./test/e2e/...

test/e2e/e2e_test.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ import (
2929
)
3030

3131
var (
32-
eventualDeploymentAppReadyTimeout = 60 * time.Second
33-
eventualStatefulsetAppReadyTimeout = 80 * time.Second
34-
eventualDeletionTimeout = 45 * time.Second
35-
eventualDeploymentPodTimeout = 25 * time.Second
36-
eventualAnomalyDeploymentPodTimeout = 50 * time.Second
37-
eventualExpandingTimeout = 25 * time.Second
32+
eventualDeploymentAppReadyTimeout = 60 * time.Second
33+
eventualStatefulsetAppReadyTimeout = 80 * time.Second
34+
eventualDeletionTimeout = 45 * time.Second
35+
eventualDeploymentPodTimeout = 25 * time.Second
36+
eventualExpandingTimeout = 25 * time.Second
3837
)
3938

4039
// Run e2e tests using the Ginkgo runner.

0 commit comments

Comments
 (0)