From 79cfc149e2b10fdd0f816d3b988dfe48fb072442 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Fri, 17 Apr 2026 22:31:17 -0400 Subject: [PATCH] UPSTREAM: : Disable upstream TLSProfile tests Signed-off-by: Todd Short --- openshift/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openshift/Makefile b/openshift/Makefile index ae8d63a420..227501f6c1 100644 --- a/openshift/Makefile +++ b/openshift/Makefile @@ -41,12 +41,13 @@ export CATALOG_IMG := $(CLUSTER_REGISTRY_HOST)/$(E2E_TEST_CATALOG_V1) # Order matters here, the ".../registries.conf" entry must be last. export DOWNSTREAM_E2E_FLAGS := -count=1 -v +export DOWNSTREAM_GODOG_FLAGS := ~@mirrored-registry && ~@TLSProfile .PHONY: test-e2e test-e2e: ## Run the e2e tests. $(DIR)/operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE) $(E2E_REGISTRY_NAME) $(E2E_REGISTRY_IMAGE) cd $(DIR)/../; \ LOCAL_REGISTRY_HOST=$$(oc get route $(E2E_REGISTRY_NAME) -n $(E2E_REGISTRY_NAMESPACE) -o jsonpath='{.spec.host}') \ - go test $(DOWNSTREAM_E2E_FLAGS) ./test/e2e/features_test.go --godog.tags="~@mirrored-registry" --k8s.cli=oc + go test $(DOWNSTREAM_E2E_FLAGS) ./test/e2e/features_test.go --godog.tags="$(DOWNSTREAM_GODOG_FLAGS)" --k8s.cli=oc export DOWNSTREAM_EXPERIMENTAL_E2E_FLAGS := -count=1 -v .PHONY: test-experimental-e2e