Skip to content

Commit 822c3c5

Browse files
committed
wip
1 parent d8f425e commit 822c3c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openshift/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ export DOWNSTREAM_E2E_FLAGS := -count=1 -v
4545
.PHONY: test-e2e
4646
test-e2e: ## Run the e2e tests.
4747
$(DIR)/operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE) $(E2E_REGISTRY_NAME) $(E2E_REGISTRY_IMAGE)
48-
#oc create route passthrough $(E2E_REGISTRY_NAME) --service $(E2E_REGISTRY_NAME) -n $(E2E_REGISTRY_NAMESPACE)
48+
oc get route $(E2E_REGISTRY_NAME) -n $(E2E_REGISTRY_NAMESPACE) -o jsonpath='{.spec.host}'
4949
cd $(DIR)/../; \
50-
LOCAL_REGISTRY_HOST=$(shell oc get route $(E2E_REGISTRY_NAME) -n $(E2E_REGISTRY_NAMESPACE) -o jsonpath='{.spec.host}') \
50+
LOCAL_REGISTRY_HOST=$$(oc get route $(E2E_REGISTRY_NAME) -n $(E2E_REGISTRY_NAMESPACE) -o jsonpath='{.spec.host}') \
5151
go test $(DOWNSTREAM_E2E_FLAGS) ./test/e2e/features_test.go --godog.tags="~@mirrored-registry && ~@catalog-updates" --k8s.cli=oc
5252

5353
export DOWNSTREAM_EXPERIMENTAL_E2E_FLAGS := -count=1 -v

0 commit comments

Comments
 (0)