From 619c1276b99a15c57139e787c5fa82ee418c5274 Mon Sep 17 00:00:00 2001 From: Kate Osborn <50597707+kate-osborn@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:46:08 -0700 Subject: [PATCH] Move check for plus usage endpoint to correct spot (#2904) Problem: #2902 moved check-for-plus-usage-endpoint dependency to the wrong Makefile target which caused the pipelines on main to fail. Solution: Move check-for-plus-usage-endpoint` dependency to the right target. --- tests/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 57d1ce7c2..a68ab7e12 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -146,8 +146,8 @@ test: build-crossplane-image ## Runs the functional tests on your kind k8s clust --plus-license-file-name=$(PLUS_LICENSE_FILE) --plus-usage-endpoint=$(PLUS_USAGE_ENDPOINT) .PHONY: test-with-plus -test-with-plus: check-for-plus-usage-endpoint PLUS_ENABLED=true -test-with-plus: test ## Runs the functional tests for NGF with NGINX Plus on your default k8s cluster +test-with-plus: PLUS_ENABLED=true +test-with-plus: check-for-plus-usage-endpoint test ## Runs the functional tests for NGF with NGINX Plus on your default k8s cluster .PHONY: cleanup-gcp cleanup-gcp: cleanup-router cleanup-vm delete-gke-cluster ## Cleanup all GCP resources