Skip to content

Commit c269f30

Browse files
pedjakclaude
andcommitted
fix(e2e): skip deploying unused default catalog in e2e tests
The operatorhubio default catalog is deployed during e2e setup but never used by any test scenario. All tests create their own isolated catalogs. Skip it to save time and remove the external dependency. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 27b05e7 commit c269f30

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ test-e2e: KIND_CLUSTER_NAME := operator-controller-e2e
284284
test-e2e: GO_BUILD_EXTRA_FLAGS := -cover
285285
test-e2e: COVERAGE_NAME := e2e
286286
test-e2e: export MANIFEST := $(STANDARD_RELEASE_MANIFEST)
287+
test-e2e: export INSTALL_DEFAULT_CATALOGS := false
287288
test-e2e: run-internal image-registry prometheus e2e e2e-coverage kind-clean #HELP Run e2e test suite on local kind cluster
288289

289290
.PHONY: test-experimental-e2e
@@ -292,6 +293,7 @@ test-experimental-e2e: KIND_CLUSTER_NAME := operator-controller-e2e
292293
test-experimental-e2e: GO_BUILD_EXTRA_FLAGS := -cover
293294
test-experimental-e2e: COVERAGE_NAME := experimental-e2e
294295
test-experimental-e2e: export MANIFEST := $(EXPERIMENTAL_RELEASE_MANIFEST)
296+
test-experimental-e2e: export INSTALL_DEFAULT_CATALOGS := false
295297
test-experimental-e2e: run-internal image-registry prometheus experimental-e2e e2e e2e-coverage kind-clean #HELP Run experimental e2e test suite on local kind cluster
296298

297299
.PHONY: prometheus

0 commit comments

Comments
 (0)