Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ test-e2e: KIND_CLUSTER_NAME := operator-controller-e2e
test-e2e: GO_BUILD_EXTRA_FLAGS := -cover
test-e2e: COVERAGE_NAME := e2e
test-e2e: export MANIFEST := $(STANDARD_RELEASE_MANIFEST)
test-e2e: export INSTALL_DEFAULT_CATALOGS := false
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a target-specific export ... := false hard-overrides any user-provided value for INSTALL_DEFAULT_CATALOGS (including make test-e2e INSTALL_DEFAULT_CATALOGS=true), which can make debugging and local experimentation harder. Consider switching to a conditional assignment that still defaults to false but allows callers to override (e.g., test-e2e: INSTALL_DEFAULT_CATALOGS ?= false plus test-e2e: export INSTALL_DEFAULT_CATALOGS, and same for test-experimental-e2e).

Copilot uses AI. Check for mistakes.
test-e2e: run-internal image-registry prometheus e2e e2e-coverage kind-clean #HELP Run e2e test suite on local kind cluster

.PHONY: test-experimental-e2e
Expand All @@ -328,6 +329,7 @@ test-experimental-e2e: KIND_CONFIG := ./kind-config/kind-config-2node.yaml
test-experimental-e2e: GO_BUILD_EXTRA_FLAGS := -cover
test-experimental-e2e: COVERAGE_NAME := experimental-e2e
test-experimental-e2e: export MANIFEST := $(EXPERIMENTAL_RELEASE_MANIFEST)
test-experimental-e2e: export INSTALL_DEFAULT_CATALOGS := false
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a target-specific export ... := false hard-overrides any user-provided value for INSTALL_DEFAULT_CATALOGS (including make test-e2e INSTALL_DEFAULT_CATALOGS=true), which can make debugging and local experimentation harder. Consider switching to a conditional assignment that still defaults to false but allows callers to override (e.g., test-e2e: INSTALL_DEFAULT_CATALOGS ?= false plus test-e2e: export INSTALL_DEFAULT_CATALOGS, and same for test-experimental-e2e).

Copilot uses AI. Check for mistakes.
test-experimental-e2e: PROMETHEUS_VALUES := helm/prom_experimental.yaml
test-experimental-e2e: E2E_TIMEOUT := 15m
test-experimental-e2e: run-internal image-registry prometheus e2e e2e-coverage kind-clean #HELP Run experimental e2e test suite on local kind cluster
Expand Down
Loading