We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8882f commit 85f41bdCopy full SHA for 85f41bd
openshift/Makefile
@@ -46,9 +46,10 @@ export DOWNSTREAM_E2E_FLAGS := -count=1 -v
46
test-e2e: ## Run the e2e tests.
47
$(DIR)/operator-controller/build-test-registry.sh $(E2E_REGISTRY_NAMESPACE) $(E2E_REGISTRY_NAME) $(E2E_REGISTRY_IMAGE)
48
cd $(DIR)/../; \
49
- ifconfig; \
+ ip addr; \
50
cat /etc/resolv.conf ; \
51
- dig $(E2E_REGISTRY_NAME).$(E2E_REGISTRY_NAMESPACE).svc ; \
+ oc get service -A -o wide | grep docker-registry ; \
52
+ dig $(E2E_REGISTRY_NAME).$(E2E_REGISTRY_NAMESPACE).svc.cluster.local ; \
53
go test $(DOWNSTREAM_E2E_FLAGS) ./test/e2e/features_test.go --godog.tags="~@mirrored-registry && ~@catalog-updates" --k8s.cli=oc
54
55
export DOWNSTREAM_EXPERIMENTAL_E2E_FLAGS := -count=1 -v
0 commit comments