@@ -161,7 +161,7 @@ MANIFESTS ?= $(STANDARD_MANIFEST) $(STANDARD_E2E_MANIFEST) $(EXPERIMENTAL_MANIFE
161161$(STANDARD_MANIFEST) ?= helm/cert-manager.yaml
162162$(STANDARD_E2E_MANIFEST) ?= helm/cert-manager.yaml helm/e2e.yaml
163163$(EXPERIMENTAL_MANIFEST) ?= helm/cert-manager.yaml helm/experimental.yaml
164- $(EXPERIMENTAL_E2E_MANIFEST) ?= helm/cert-manager.yaml helm/experimental.yaml helm/e2e.yaml
164+ $(EXPERIMENTAL_E2E_MANIFEST) ?= helm/cert-manager.yaml helm/experimental.yaml helm/e2e.yaml helm/high-availability.yaml
165165HELM_SETTINGS ?=
166166.PHONY : $(MANIFESTS )
167167$(MANIFESTS ) : $(HELM )
@@ -218,7 +218,11 @@ test: manifests generate fmt lint test-unit test-e2e test-regression #HELP Run a
218218
219219.PHONY : e2e
220220e2e : # EXHELP Run the e2e tests.
221+ <<<<<<< HEAD
221222 go test -count=1 -v ./test/e2e/features_test.go
223+ ====== =
224+ go test -count=1 -v -timeout=20m ./test/e2e/...
225+ >>>>>>> 2fd488f (Make deployments HA-ready with configurable replica count)
222226
223227E2E_REGISTRY_NAME := docker-registry
224228E2E_REGISTRY_NAMESPACE := operator-controller-e2e
@@ -489,8 +493,8 @@ run-experimental: run-internal #HELP Build the operator-controller then deploy i
489493CATD_NAMESPACE := olmv1-system
490494.PHONY : wait
491495wait :
492- kubectl wait --for=condition=Available --namespace=$(CATD_NAMESPACE ) deployment/catalogd-controller-manager --timeout=60s
493- kubectl wait --for=condition=Ready --namespace=$(CATD_NAMESPACE ) certificate/catalogd-service-cert # Avoid upgrade test flakes when reissuing cert
496+ kubectl wait --for=condition=Available --namespace=$(CATD_NAMESPACE ) deployment/catalogd-controller-manager --timeout=3m
497+ kubectl wait --for=condition=Ready --namespace=$(CATD_NAMESPACE ) certificate/catalogd-service-cert --timeout=3m # Avoid upgrade test flakes when reissuing cert
494498
495499.PHONY : docker-build
496500docker-build : build-linux # EXHELP Build docker image for operator-controller and catalog with GOOS=linux and local GOARCH.
0 commit comments